SYMBOL INDEX (10776 symbols across 653 files) FILE: cookbook/admin.py class CustomUserAdmin (line 25) | class CustomUserAdmin(UserAdmin): method has_add_permission (line 26) | def has_add_permission(self, request, obj=None): function delete_space_action (line 37) | def delete_space_action(modeladmin, request, queryset): class SpaceAdmin (line 42) | class SpaceAdmin(admin.ModelAdmin): class UserSpaceAdmin (line 55) | class UserSpaceAdmin(admin.ModelAdmin): class UserPreferenceAdmin (line 65) | class UserPreferenceAdmin(admin.ModelAdmin): method name (line 73) | def name(obj): class SearchPreferenceAdmin (line 80) | class SearchPreferenceAdmin(admin.ModelAdmin): method name (line 86) | def name(obj): class AiProviderAdmin (line 93) | class AiProviderAdmin(admin.ModelAdmin): class AiLogAdmin (line 101) | class AiLogAdmin(admin.ModelAdmin): class StorageAdmin (line 107) | class StorageAdmin(admin.ModelAdmin): class ConnectorConfigAdmin (line 115) | class ConnectorConfigAdmin(admin.ModelAdmin): class CustomFilterAdmin (line 123) | class CustomFilterAdmin(admin.ModelAdmin): class SyncAdmin (line 130) | class SyncAdmin(admin.ModelAdmin): class SupermarketCategoryInline (line 138) | class SupermarketCategoryInline(admin.TabularInline): class SupermarketAdmin (line 142) | class SupermarketAdmin(admin.ModelAdmin): class SupermarketCategoryAdmin (line 147) | class SupermarketCategoryAdmin(admin.ModelAdmin): class SyncLogAdmin (line 155) | class SyncLogAdmin(admin.ModelAdmin): function enable_tree_sorting (line 163) | def enable_tree_sorting(modeladmin, request, queryset): function disable_tree_sorting (line 172) | def disable_tree_sorting(modeladmin, request, queryset): function sort_tree (line 178) | def sort_tree(modeladmin, request, queryset): class KeywordAdmin (line 186) | class KeywordAdmin(TreeAdmin): function delete_unattached_steps (line 197) | def delete_unattached_steps(modeladmin, request, queryset): class StepAdmin (line 202) | class StepAdmin(admin.ModelAdmin): method recipe_and_name (line 210) | def recipe_and_name(obj): function rebuild_index (line 220) | def rebuild_index(modeladmin, request, queryset): class RecipeAdmin (line 230) | class RecipeAdmin(admin.ModelAdmin): method created_by (line 238) | def created_by(obj): class UnitAdmin (line 248) | class UnitAdmin(admin.ModelAdmin): class FoodAdmin (line 260) | class FoodAdmin(TreeAdmin): class UnitConversionAdmin (line 270) | class UnitConversionAdmin(admin.ModelAdmin): function delete_unattached_ingredients (line 279) | def delete_unattached_ingredients(modeladmin, request, queryset): class IngredientAdmin (line 284) | class IngredientAdmin(admin.ModelAdmin): method recipe_name (line 291) | def recipe_name(obj): class CommentAdmin (line 299) | class CommentAdmin(admin.ModelAdmin): method name (line 305) | def name(obj): class RecipeImportAdmin (line 312) | class RecipeImportAdmin(admin.ModelAdmin): class RecipeBookAdmin (line 319) | class RecipeBookAdmin(admin.ModelAdmin): method user_name (line 324) | def user_name(obj): class RecipeBookEntryAdmin (line 331) | class RecipeBookEntryAdmin(admin.ModelAdmin): class MealPlanAdmin (line 338) | class MealPlanAdmin(admin.ModelAdmin): method user (line 342) | def user(obj): class MealTypeAdmin (line 349) | class MealTypeAdmin(admin.ModelAdmin): class ViewLogAdmin (line 357) | class ViewLogAdmin(admin.ModelAdmin): class InviteLinkAdmin (line 364) | class InviteLinkAdmin(admin.ModelAdmin): class CookLogAdmin (line 374) | class CookLogAdmin(admin.ModelAdmin): class ShoppingListRecipeAdmin (line 382) | class ShoppingListRecipeAdmin(admin.ModelAdmin): class ShoppingListEntryAdmin (line 389) | class ShoppingListEntryAdmin(admin.ModelAdmin): class ShareLinkAdmin (line 396) | class ShareLinkAdmin(admin.ModelAdmin): function delete_properties_with_type (line 404) | def delete_properties_with_type(modeladmin, request, queryset): class PropertyTypeAdmin (line 409) | class PropertyTypeAdmin(admin.ModelAdmin): class PropertyAdmin (line 419) | class PropertyAdmin(admin.ModelAdmin): class NutritionInformationAdmin (line 426) | class NutritionInformationAdmin(admin.ModelAdmin): class ImportLogAdmin (line 433) | class ImportLogAdmin(admin.ModelAdmin): class TelegramBotAdmin (line 440) | class TelegramBotAdmin(admin.ModelAdmin): class BookmarkletImportAdmin (line 447) | class BookmarkletImportAdmin(admin.ModelAdmin): class UserFileAdmin (line 454) | class UserFileAdmin(admin.ModelAdmin): FILE: cookbook/apps.py class CookbookConfig (line 12) | class CookbookConfig(AppConfig): method ready (line 15) | def ready(self): FILE: cookbook/connectors/connector.py class UserDTO (line 9) | class UserDTO: method create_from_user (line 14) | def create_from_user(instance: User) -> 'UserDTO': class ShoppingListEntryDTO (line 22) | class ShoppingListEntryDTO: method try_create_from_entry (line 30) | def try_create_from_entry(instance: ShoppingListEntry) -> Optional['Sh... class Connector (line 44) | class Connector(ABC): method __init__ (line 46) | def __init__(self, config: ConnectorConfig): method on_shopping_list_entry_created (line 50) | async def on_shopping_list_entry_created(self, instance: ShoppingListE... method on_shopping_list_entry_updated (line 55) | async def on_shopping_list_entry_updated(self, instance: ShoppingListE... method on_shopping_list_entry_deleted (line 59) | async def on_shopping_list_entry_deleted(self, instance: ShoppingListE... method close (line 63) | async def close(self) -> None: FILE: cookbook/connectors/connector_manager.py class ActionType (line 22) | class ActionType(Enum): class Work (line 29) | class Work: class Singleton (line 34) | class Singleton(type): method __call__ (line 37) | def __call__(cls, *args, **kwargs): class ConnectorManager (line 52) | class ConnectorManager(metaclass=Singleton): method __init__ (line 57) | def __init__(self): method __call__ (line 65) | def __call__(self, instance: Any, **kwargs) -> None: method _add_work (line 78) | def _add_work(self, action_type: ActionType, *instances: REGISTERED_CL... method stop (line 88) | def stop(self): method is_initialized (line 93) | def is_initialized(cls): method add_work (line 97) | def add_work(action_type: ActionType, *instances: REGISTERED_CLASSES): method worker (line 108) | def worker(worker_id: int, worker_queue: queue.Queue): method get_connected_for_config (line 176) | def get_connected_for_config(config: ConnectorConfig) -> Optional[Conn... function _force_load_instance (line 184) | def _force_load_instance(instance: REGISTERED_CLASSES): function _close_connectors (line 191) | async def _close_connectors(connectors: List[Connector]): function run_connectors (line 203) | async def run_connectors(connectors: List[Connector], instance: REGISTER... FILE: cookbook/connectors/homeassistant.py class HomeAssistant (line 12) | class HomeAssistant(Connector): method __init__ (line 16) | def __init__(self, config: ConnectorConfig): method homeassistant_api_call (line 26) | async def homeassistant_api_call(self, method: str, path: str, data: D... method on_shopping_list_entry_created (line 35) | async def on_shopping_list_entry_created(self, shopping_list_entry: Sh... method on_shopping_list_entry_updated (line 56) | async def on_shopping_list_entry_updated(self, shopping_list_entry: Sh... method on_shopping_list_entry_deleted (line 61) | async def on_shopping_list_entry_deleted(self, shopping_list_entry: Sh... method close (line 80) | async def close(self) -> None: function _format_shopping_list_entry (line 84) | def _format_shopping_list_entry(shopping_list_entry: ShoppingListEntryDT... FILE: cookbook/forms.py class SelectWidget (line 18) | class SelectWidget(widgets.Select): class Media (line 20) | class Media: class MultiSelectWidget (line 24) | class MultiSelectWidget(widgets.SelectMultiple): class Media (line 26) | class Media: class ImportExportBase (line 30) | class ImportExportBase(forms.Form): class MultipleFileInput (line 67) | class MultipleFileInput(forms.ClearableFileInput): class MultipleFileField (line 71) | class MultipleFileField(forms.FileField): method __init__ (line 73) | def __init__(self, *args, **kwargs): method clean (line 77) | def clean(self, data, initial=None): class ImportForm (line 86) | class ImportForm(ImportExportBase): class ExportForm (line 96) | class ExportForm(ImportExportBase): method __init__ (line 101) | def __init__(self, *args, **kwargs): class InviteLinkForm (line 107) | class InviteLinkForm(forms.ModelForm): method __init__ (line 109) | def __init__(self, *args, **kwargs): method clean (line 114) | def clean(self): method clean_email (line 121) | def clean_email(self): class Meta (line 129) | class Meta: class SpaceCreateForm (line 140) | class SpaceCreateForm(forms.Form): method clean_name (line 144) | def clean_name(self): class SpaceJoinForm (line 152) | class SpaceJoinForm(forms.Form): class AllAuthSignupForm (line 157) | class AllAuthSignupForm(SignupForm): method __init__ (line 161) | def __init__(self, **kwargs): method signup (line 168) | def signup(self, request, user): class AllAuthSocialSignupForm (line 172) | class AllAuthSocialSignupForm(SocialSignupForm): method __init__ (line 175) | def __init__(self, **kwargs): method signup (line 180) | def signup(self, request, user): class CustomPasswordResetForm (line 193) | class CustomPasswordResetForm(ResetPasswordForm): method __init__ (line 196) | def __init__(self, **kwargs): class UserCreateForm (line 202) | class UserCreateForm(forms.Form): FILE: cookbook/helper/AllAuthCustomAdapter.py class AllAuthCustomAdapter (line 18) | class AllAuthCustomAdapter(DefaultAccountAdapter): method is_open_for_signup (line 20) | def is_open_for_signup(self, request): method send_mail (line 37) | def send_mail(self, template_prefix, email, context): FILE: cookbook/helper/CustomStorageClass.py class CachedS3Boto3Storage (line 8) | class CachedS3Boto3Storage(S3Boto3Storage): method url (line 9) | def url(self, name, **kwargs): FILE: cookbook/helper/HelperFunctions.py class Round (line 15) | class Round(Func): function str2bool (line 20) | def str2bool(v): function safe_request (line 27) | def safe_request(method, url, **kwargs): function match_or_fuzzymatch (line 43) | def match_or_fuzzymatch(check_string: str, key_dict: dict) -> tuple[str,... FILE: cookbook/helper/ai_helper.py function get_monthly_token_usage (line 11) | def get_monthly_token_usage(space): function has_monthly_token (line 21) | def has_monthly_token(space): function can_perform_ai_request (line 28) | def can_perform_ai_request(space): class AiCallbackHandler (line 32) | class AiCallbackHandler(CustomLogger): method __init__ (line 38) | def __init__(self, space, user, ai_provider, function): method log_pre_api_call (line 45) | def log_pre_api_call(self, model, messages, kwargs): method log_post_api_call (line 48) | def log_post_api_call(self, kwargs, response_obj, start_time, end_time): method log_success_event (line 51) | def log_success_event(self, kwargs, response_obj, start_time, end_time): method log_failure_event (line 54) | def log_failure_event(self, kwargs, response_obj, start_time, end_time): method create_ai_log (line 57) | def create_ai_log(self, kwargs, response_obj, start_time, end_time): FILE: cookbook/helper/automation_helper.py class AutomationEngine (line 9) | class AutomationEngine: method __init__ (line 26) | def __init__(self, request, use_cache=True, source=None): method apply_keyword_automation (line 34) | def apply_keyword_automation(self, keyword): method apply_unit_automation (line 58) | def apply_unit_automation(self, unit): method apply_food_automation (line 82) | def apply_food_automation(self, food): method apply_never_unit_automation (line 107) | def apply_never_unit_automation(self, tokens): method apply_transpose_automation (line 149) | def apply_transpose_automation(self, string): method apply_regex_replace_automation (line 185) | def apply_regex_replace_automation(self, string, automation_type): FILE: cookbook/helper/batch_edit_helper.py function add_to_relation (line 1) | def add_to_relation(relation_model, base_field_name, base_ids, related_f... function remove_from_relation (line 12) | def remove_from_relation(relation_model, base_field_name, base_ids, rela... function remove_all_from_relation (line 16) | def remove_all_from_relation(relation_model, base_field_name, base_ids): function set_relation (line 20) | def set_relation(relation_model, base_field_name, base_ids, related_fiel... FILE: cookbook/helper/cache_helper.py class CacheHelper (line 1) | class CacheHelper: method __init__ (line 7) | def __init__(self, space): FILE: cookbook/helper/context_processors.py function context_settings (line 4) | def context_settings(request): FILE: cookbook/helper/cooklang_parser.py class Quantity (line 11) | class Quantity: method parse (line 16) | def parse(cls, raw) -> "Quantity": method add_optional (line 40) | def add_optional(cls, a: Optional["Quantity"], b: Optional["Quantity"]... method __add__ (line 47) | def __add__(self, other: "Quantity") -> "Quantity": class Timer (line 58) | class Timer: method parse (line 64) | def parse(cls, raw) -> "Timer": class Ingredient (line 88) | class Ingredient: method parse (line 93) | def parse(cls, raw: str) -> "Ingredient": method __add__ (line 104) | def __add__(self, other: "Ingredient") -> "Ingredient": class Block (line 114) | class Block: method new (line 119) | def new(cls): class Step (line 124) | class Step: method parse (line 128) | def parse(cls, raw: str) -> "Step": class Recipe (line 211) | class Recipe: method parse (line 217) | def parse(cls, raw: str) -> "Recipe": FILE: cookbook/helper/drf_spectacular_hooks.py function custom_postprocessing_hook (line 6) | def custom_postprocessing_hook(result, generator, request, public): class LegacySchema (line 25) | class LegacySchema(AutoSchema): method path (line 29) | def path(self): method get_operation_id (line 34) | def get_operation_id(self): method get_operation_id_base (line 50) | def get_operation_id_base(self, action): method get_serializer (line 87) | def get_serializer(self): method _to_camel_case (line 98) | def _to_camel_case(self, snake_str): FILE: cookbook/helper/fdc_helper.py function get_all_nutrient_types (line 4) | def get_all_nutrient_types(): FILE: cookbook/helper/image_processing.py function rescale_image_jpeg (line 7) | def rescale_image_jpeg(image_object, base_width=1020): function rescale_image_png (line 20) | def rescale_image_png(image_object, base_width=1020): function get_filetype (line 31) | def get_filetype(name): function is_file_type_allowed (line 38) | def is_file_type_allowed(filename, image_only=False): function strip_image_meta (line 53) | def strip_image_meta(image_object, file_format): function handle_image (line 69) | def handle_image(request, image_object, filetype): FILE: cookbook/helper/ingredient_parser.py class IngredientParser (line 10) | class IngredientParser: method __init__ (line 15) | def __init__(self, request, cache_mode=True, ignore_automations=False): method get_unit (line 27) | def get_unit(self, unit_name): method get_food (line 45) | def get_food(self, food_name): method parse_fraction (line 63) | def parse_fraction(self, x): method parse_amount (line 77) | def parse_amount(self, x): method parse_food_with_comma (line 121) | def parse_food_with_comma(self, tokens): method parse_food (line 136) | def parse_food(self, tokens): method parse (line 161) | def parse(self, ingredient): method parse_as_ingredient (line 298) | def parse_as_ingredient(self, text): FILE: cookbook/helper/mdx_attributes.py class StyleTreeprocessor (line 5) | class StyleTreeprocessor(Treeprocessor): method run_processor (line 7) | def run_processor(self, node): method run (line 18) | def run(self, root): class MarkdownFormatExtension (line 23) | class MarkdownFormatExtension(markdown.Extension): method extendMarkdown (line 25) | def extendMarkdown(self, md): FILE: cookbook/helper/mdx_urlize.py class UrlizePattern (line 51) | class UrlizePattern(markdown.inlinepatterns.Pattern): method handleMatch (line 54) | def handleMatch(self, m): class UrlizeExtension (line 74) | class UrlizeExtension(markdown.Extension): method extendMarkdown (line 77) | def extendMarkdown(self, md): function makeExtension (line 82) | def makeExtension(*args, **kwargs): FILE: cookbook/helper/open_data_importer.py class OpenDataImportResponse (line 12) | class OpenDataImportResponse: method to_dict (line 18) | def to_dict(self): class OpenDataImporter (line 22) | class OpenDataImporter: method __init__ (line 29) | def __init__(self, request, data, update_existing=False, use_metric=Tr... method _update_slug_cache (line 35) | def _update_slug_cache(self, object_class, datatype): method _is_obj_identical (line 39) | def _is_obj_identical(field_list, obj, existing_obj): method _merge_if_conflicting (line 62) | def _merge_if_conflicting(model_type, obj, existing_data_slugs, existi... method _get_existing_obj (line 89) | def _get_existing_obj(obj, existing_data_slugs, existing_data_names): method import_units (line 109) | def import_units(self): method import_category (line 157) | def import_category(self): method import_property (line 204) | def import_property(self): method import_supermarket (line 253) | def import_supermarket(self): method import_food (line 318) | def import_food(self): method import_conversion (line 448) | def import_conversion(self): FILE: cookbook/helper/permission_config.py class PermissionConfig (line 4) | class PermissionConfig: FILE: cookbook/helper/permission_helper.py function get_allowed_groups (line 22) | def get_allowed_groups(groups_required): function has_group_permission (line 37) | def has_group_permission(user, groups, no_cache=False): function is_object_owner (line 69) | def is_object_owner(user, obj): function is_space_owner (line 86) | def is_space_owner(user, obj): function is_object_shared (line 101) | def is_object_shared(user, obj): function is_object_household (line 116) | def is_object_household(user, obj): function share_link_valid (line 130) | def share_link_valid(recipe, share): function group_required (line 156) | def group_required(*groups_required): class GroupRequiredMixin (line 170) | class GroupRequiredMixin(object): method dispatch (line 177) | def dispatch(self, request, *args, **kwargs): class OwnerRequiredMixin (line 196) | class OwnerRequiredMixin(object): method dispatch (line 198) | def dispatch(self, request, *args, **kwargs): class CustomIsOwner (line 223) | class CustomIsOwner(permissions.BasePermission): method has_permission (line 231) | def has_permission(self, request, view): method has_object_permission (line 234) | def has_object_permission(self, request, view, obj): class CustomIsOwnerReadOnly (line 238) | class CustomIsOwnerReadOnly(CustomIsOwner): method has_permission (line 239) | def has_permission(self, request, view): method has_object_permission (line 242) | def has_object_permission(self, request, view, obj): class CustomIsOwnerDestroyOnly (line 246) | class CustomIsOwnerDestroyOnly(CustomIsOwner): method has_permission (line 247) | def has_permission(self, request, view): method has_object_permission (line 250) | def has_object_permission(self, request, view, obj): class CustomIsSpaceOwner (line 254) | class CustomIsSpaceOwner(permissions.BasePermission): method has_permission (line 261) | def has_permission(self, request, view): method has_object_permission (line 264) | def has_object_permission(self, request, view, obj): class CustomIsShared (line 269) | class CustomIsShared(permissions.BasePermission): method has_permission (line 276) | def has_permission(self, request, view): method has_object_permission (line 279) | def has_object_permission(self, request, view, obj): class CustomIsHousehold (line 283) | class CustomIsHousehold(permissions.BasePermission): method has_permission (line 290) | def has_permission(self, request, view): method has_object_permission (line 293) | def has_object_permission(self, request, view, obj): class CustomIsGuest (line 297) | class CustomIsGuest(permissions.BasePermission): method has_permission (line 304) | def has_permission(self, request, view): method has_object_permission (line 307) | def has_object_permission(self, request, view, obj): class CustomIsUser (line 311) | class CustomIsUser(permissions.BasePermission): method has_permission (line 318) | def has_permission(self, request, view): class CustomIsAdmin (line 322) | class CustomIsAdmin(permissions.BasePermission): method has_permission (line 329) | def has_permission(self, request, view): class CustomIsShare (line 333) | class CustomIsShare(permissions.BasePermission): method has_permission (line 340) | def has_permission(self, request, view): method has_object_permission (line 343) | def has_object_permission(self, request, view, obj): class CustomRecipePermission (line 350) | class CustomRecipePermission(permissions.BasePermission): method has_permission (line 356) | def has_permission(self, request, view): # user is either at least a ... method has_object_permission (line 361) | def has_object_permission(self, request, view, obj): class CustomAiProviderPermission (line 378) | class CustomAiProviderPermission(permissions.BasePermission): method has_permission (line 387) | def has_permission(self, request, view): # user is either at least a ... method has_object_permission (line 391) | def has_object_permission(self, request, view, obj): class CustomUserPermission (line 397) | class CustomUserPermission(permissions.BasePermission): method has_permission (line 403) | def has_permission(self, request, view): # a space filtered user list... method has_object_permission (line 406) | def has_object_permission(self, request, view, obj): # object write p... class CustomTokenHasScope (line 415) | class CustomTokenHasScope(TokenHasScope): method has_permission (line 422) | def has_permission(self, request, view): class CustomTokenHasReadWriteScope (line 429) | class CustomTokenHasReadWriteScope(TokenHasReadWriteScope): method get_scopes (line 436) | def get_scopes(self, request, view): method has_permission (line 444) | def has_permission(self, request, view): function above_space_limit (line 451) | def above_space_limit(space): # TODO add file storage limit function above_space_recipe_limit (line 462) | def above_space_recipe_limit(space): function above_space_user_limit (line 474) | def above_space_user_limit(space): function switch_user_active_space (line 486) | def switch_user_active_space(user, space): class IsReadOnlyDRF (line 506) | class IsReadOnlyDRF(permissions.BasePermission): method has_permission (line 509) | def has_permission(self, request, view): class IsCreateDRF (line 513) | class IsCreateDRF(permissions.BasePermission): method has_permission (line 516) | def has_permission(self, request, view): function create_space_for_user (line 520) | def create_space_for_user(user, name=None): FILE: cookbook/helper/property_helper.py class FoodPropertyHelper (line 8) | class FoodPropertyHelper: method __init__ (line 11) | def __init__(self, space): method calculate_recipe_properties (line 18) | def calculate_recipe_properties(self, recipe): method add_or_create (line 86) | def add_or_create(d, key, value, food): FILE: cookbook/helper/recipe_search.py class RecipeSearch (line 17) | class RecipeSearch(): method __init__ (line 20) | def __init__(self, request, **params): method get_queryset (line 143) | def get_queryset(self, queryset): method _sort_includes (line 169) | def _sort_includes(self, *args): method _build_sort_order (line 177) | def _build_sort_order(self): method string_filters (line 211) | def string_filters(self, string=None): method _cooked_on_filter (line 247) | def _cooked_on_filter(self): method _viewed_on_filter (line 263) | def _viewed_on_filter(self, viewed_date=None): method _created_on_filter (line 275) | def _created_on_filter(self): method _updated_on_filter (line 283) | def _updated_on_filter(self): method _created_by_filter (line 291) | def _created_by_filter(self, created_by_user_id=None): method _new_recipes (line 296) | def _new_recipes(self, new_days=7): method _recently_viewed (line 305) | def _recently_viewed(self, num_recent=None): method _favorite_recipes (line 318) | def _favorite_recipes(self): method keyword_filters (line 338) | def keyword_filters(self, **kwargs): method food_filters (line 371) | def food_filters(self, **kwargs): method unit_filters (line 405) | def unit_filters(self, units=None, operator=True): method rating_filter (line 414) | def rating_filter(self): method internal_filter (line 427) | def internal_filter(self, internal=None): method book_filters (line 432) | def book_filters(self, **kwargs): method step_filters (line 457) | def step_filters(self, steps=None, operator=True): method build_fulltext_filters (line 466) | def build_fulltext_filters(self, string=None): method build_text_filters (line 497) | def build_text_filters(self, string=None): method build_trigram (line 510) | def build_trigram(self, string=None): method _makenow_filter (line 526) | def _makenow_filter(self, missing=None): method __children_substitute_filter (line 550) | def __children_substitute_filter(shopping_users=None): method __sibling_substitute_filter (line 563) | def __sibling_substitute_filter(shopping_users=None): FILE: cookbook/helper/recipe_url_import.py function get_from_scraper (line 17) | def get_from_scraper(scrape, request): function get_recipe_properties (line 216) | def get_recipe_properties(space, property_data): function get_from_youtube_scraper (line 247) | def get_from_youtube_scraper(url, request): function parse_name (line 284) | def parse_name(name): function parse_description (line 293) | def parse_description(description): function clean_instruction_string (line 297) | def clean_instruction_string(instruction): function parse_instructions (line 336) | def parse_instructions(instructions): function parse_image (line 365) | def parse_image(image): function parse_servings (line 385) | def parse_servings(servings): function parse_servings_text (line 399) | def parse_servings_text(servings): function parse_time (line 413) | def parse_time(recipe_time): function parse_keywords (line 433) | def parse_keywords(keyword_json, request): function listify_keywords (line 452) | def listify_keywords(keyword_list): function normalize_string (line 468) | def normalize_string(string): function iso_duration_to_minutes (line 479) | def iso_duration_to_minutes(string): function get_images_from_soup (line 484) | def get_images_from_soup(soup, url): function clean_dict (line 517) | def clean_dict(input_dict, key): FILE: cookbook/helper/scope_middleware.py class ScopeMiddleware (line 15) | class ScopeMiddleware: method __init__ (line 16) | def __init__(self, get_response): method __call__ (line 19) | def __call__(self, request): FILE: cookbook/helper/shopping_helper.py function shopping_helper (line 13) | def shopping_helper(qs, request): class RecipeShoppingEditor (line 35) | class RecipeShoppingEditor(): method __init__ (line 36) | def __init__(self, user, space, **kwargs): method _recipe_servings (line 65) | def _recipe_servings(self): method _servings_factor (line 70) | def _servings_factor(self): method get_shopping_list_recipe (line 75) | def get_shopping_list_recipe(id, user, space): method get_recipe_ingredients (line 87) | def get_recipe_ingredients(self, id, exclude_onhand=False): method _include_related (line 99) | def _include_related(self): method _exclude_onhand (line 103) | def _exclude_onhand(self): method create (line 106) | def create(self, **kwargs): method add (line 139) | def add(self, **kwargs): method edit (line 142) | def edit(self, servings=None, ingredients=None, **kwargs): method edit_servings (line 153) | def edit_servings(self, servings=None, **kwargs): method delete (line 172) | def delete(self, **kwargs): method _add_ingredients (line 179) | def _add_ingredients(self, ingredients=None): method _delete_ingredients (line 207) | def _delete_ingredients(self, ingredients=None): FILE: cookbook/helper/template_helper.py class IngredientObject (line 14) | class IngredientObject(object): method __init__ (line 21) | def __init__(self, ingredient): method __str__ (line 49) | def __str__(self): function render_instructions (line 56) | def render_instructions(step): # TODO deduplicate markdown cleanup code FILE: cookbook/helper/unit_conversion_helper.py class ConversionException (line 37) | class ConversionException(Exception): class UnitConversionHelper (line 41) | class UnitConversionHelper: method __init__ (line 45) | def __init__(self, space): method convert_from_to (line 53) | def convert_from_to(from_unit, to_unit, amount): method base_conversions (line 72) | def base_conversions(self, ingredient_list): method get_conversions (line 110) | def get_conversions(self, ingredient): method _uc_convert (line 144) | def _uc_convert(self, uc, amount, unit, food): FILE: cookbook/integration/cheftap.py class ChefTap (line 8) | class ChefTap(Integration): method import_file_name_filter (line 10) | def import_file_name_filter(self, zip_info_object): method get_recipe_from_file (line 14) | def get_recipe_from_file(self, file): method get_file_from_recipe (line 58) | def get_file_from_recipe(self, recipe): FILE: cookbook/integration/chowdown.py class Chowdown (line 13) | class Chowdown(Integration): method import_file_name_filter (line 15) | def import_file_name_filter(self, zip_info_object): method normalize_name (line 18) | def normalize_name(self, name): method get_recipe_from_file (line 25) | def get_recipe_from_file(self, file): method formatTime (line 169) | def formatTime(self, min): method get_file_from_recipe (line 174) | def get_file_from_recipe(self, recipe): method get_files_from_recipes (line 244) | def get_files_from_recipes(self, recipes, el, cookie): FILE: cookbook/integration/cookbookapp.py class CookBookApp (line 18) | class CookBookApp(Integration): method import_file_name_filter (line 20) | def import_file_name_filter(self, zip_info_object): method get_recipe_from_file (line 23) | def get_recipe_from_file(self, file): FILE: cookbook/integration/cooklang.py class Cooklang (line 15) | class Cooklang(Integration): method apply_metadata_cooklang_to_tandoor (line 17) | def apply_metadata_cooklang_to_tandoor(self, cooklang_metadata: dict, ... method get_recipe_from_file (line 56) | def get_recipe_from_file(self, file) -> Recipe: FILE: cookbook/integration/cookmate.py class Cookmate (line 10) | class Cookmate(Integration): method import_file_name_filter (line 12) | def import_file_name_filter(self, zip_info_object): method get_files_from_recipes (line 15) | def get_files_from_recipes(self, recipes, el, cookie): method get_recipe_from_file (line 18) | def get_recipe_from_file(self, file): method get_file_from_recipe (line 79) | def get_file_from_recipe(self, recipe): FILE: cookbook/integration/copymethat.py class CopyMeThat (line 14) | class CopyMeThat(Integration): method import_file_name_filter (line 16) | def import_file_name_filter(self, zip_info_object): method get_recipe_from_file (line 21) | def get_recipe_from_file(self, file): method split_recipe_file (line 128) | def split_recipe_file(self, file): FILE: cookbook/integration/default.py class Default (line 14) | class Default(Integration): method get_recipe_from_file (line 16) | def get_recipe_from_file(self, file): method decode_recipe (line 29) | def decode_recipe(self, string): method get_file_from_recipe (line 59) | def get_file_from_recipe(self, recipe): method get_files_from_recipes (line 65) | def get_files_from_recipes(self, recipes, el, cookie): FILE: cookbook/integration/domestica.py class Domestica (line 10) | class Domestica(Integration): method get_recipe_from_file (line 12) | def get_recipe_from_file(self, file): method get_file_from_recipe (line 53) | def get_file_from_recipe(self, recipe): method split_recipe_file (line 56) | def split_recipe_file(self, file): FILE: cookbook/integration/gourmet.py class Gourmet (line 16) | class Gourmet(Integration): method split_recipe_file (line 18) | def split_recipe_file(self, file): method get_ingredients_recursive (line 25) | def get_ingredients_recursive(self, step, ingredients, ingredient_pars... method get_recipe_from_file (line 61) | def get_recipe_from_file(self, file): method get_files_from_recipes (line 206) | def get_files_from_recipes(self, recipes, el, cookie): method get_file_from_recipe (line 209) | def get_file_from_recipe(self, recipe): FILE: cookbook/integration/integration.py class Integration (line 23) | class Integration: method __init__ (line 36) | def __init__(self, request, export_type): method do_export (line 59) | def do_export(self, recipes, el): method import_file_name_filter (line 93) | def import_file_name_filter(self, zip_info_object): method do_import (line 103) | def do_import(self, files, il, import_duplicates, meal_plans=True, sho... method handle_duplicates (line 246) | def handle_duplicates(self, recipe, import_duplicates): method import_recipe_image (line 256) | def import_recipe_image(self, recipe, image_file, filetype='.jpeg'): method get_recipe_from_file (line 266) | def get_recipe_from_file(self, file): method split_recipe_file (line 274) | def split_recipe_file(self, file): method get_file_from_recipe (line 282) | def get_file_from_recipe(self, recipe): method get_files_from_recipes (line 293) | def get_files_from_recipes(self, recipes, el, cookie): method handle_exception (line 304) | def handle_exception(exception, log=None, message=''): method get_export_file_name (line 313) | def get_export_file_name(self, format='zip'): method get_recipe_processed_msg (line 316) | def get_recipe_processed_msg(self, recipe): FILE: cookbook/integration/mealie.py class Mealie (line 13) | class Mealie(Integration): method import_file_name_filter (line 15) | def import_file_name_filter(self, zip_info_object): method get_recipe_from_file (line 18) | def get_recipe_from_file(self, file): method get_file_from_recipe (line 98) | def get_file_from_recipe(self, recipe): FILE: cookbook/integration/mealie1.py class Mealie1 (line 20) | class Mealie1(Integration): method get_recipe_from_file (line 25) | def get_recipe_from_file(self, file): method get_file_from_recipe (line 370) | def get_file_from_recipe(self, recipe): function get_step_id (line 374) | def get_step_id(i, first_step_of_recipe_dict, step_id_dict, recipe_ingre... FILE: cookbook/integration/mealmaster.py class MealMaster (line 8) | class MealMaster(Integration): method get_recipe_from_file (line 10) | def get_recipe_from_file(self, file): method get_file_from_recipe (line 58) | def get_file_from_recipe(self, recipe): method split_recipe_file (line 61) | def split_recipe_file(self, file): FILE: cookbook/integration/melarecipes.py class MelaRecipes (line 12) | class MelaRecipes(Integration): method split_recipe_file (line 14) | def split_recipe_file(self, file): method get_files_from_recipes (line 17) | def get_files_from_recipes(self, recipes, el, cookie): method get_recipe_from_file (line 20) | def get_recipe_from_file(self, file): method get_file_from_recipe (line 82) | def get_file_from_recipe(self, recipe): FILE: cookbook/integration/nextcloud_cookbook.py class NextcloudCookbook (line 15) | class NextcloudCookbook(Integration): method import_file_name_filter (line 17) | def import_file_name_filter(self, zip_info_object): method get_recipe_from_file (line 20) | def get_recipe_from_file(self, file): method formatTime (line 106) | def formatTime(self, min): method get_file_from_recipe (line 111) | def get_file_from_recipe(self, recipe): method get_files_from_recipes (line 143) | def get_files_from_recipes(self, recipes, el, cookie): method getJPEG (line 172) | def getJPEG(self, imageByte): method getThumb (line 180) | def getThumb(self, size, imageByte): FILE: cookbook/integration/openeats.py class OpenEats (line 10) | class OpenEats(Integration): method get_recipe_from_file (line 12) | def get_recipe_from_file(self, file): method split_recipe_file (line 69) | def split_recipe_file(self, file): method get_file_from_recipe (line 128) | def get_file_from_recipe(self, recipe): FILE: cookbook/integration/paprika.py class Paprika (line 15) | class Paprika(Integration): method get_file_from_recipe (line 17) | def get_file_from_recipe(self, recipe): method get_recipe_from_file (line 20) | def get_recipe_from_file(self, file): FILE: cookbook/integration/pdfexport.py class PDFexport (line 10) | class PDFexport(Integration): method get_recipe_from_file (line 12) | def get_recipe_from_file(self, file): method get_files_from_recipes_async (line 15) | async def get_files_from_recipes_async(self, recipes, el, cookie): method get_files_from_recipes (line 55) | def get_files_from_recipes(self, recipes, el, cookie): FILE: cookbook/integration/pepperplate.py class Pepperplate (line 6) | class Pepperplate(Integration): method get_recipe_from_file (line 8) | def get_recipe_from_file(self, file): method get_file_from_recipe (line 54) | def get_file_from_recipe(self, recipe): FILE: cookbook/integration/plantoeat.py class Plantoeat (line 10) | class Plantoeat(Integration): method get_recipe_from_file (line 12) | def get_recipe_from_file(self, file): method split_recipe_file (line 83) | def split_recipe_file(self, file): FILE: cookbook/integration/recettetek.py class RecetteTek (line 15) | class RecetteTek(Integration): method import_file_name_filter (line 17) | def import_file_name_filter(self, zip_info_object): method split_recipe_file (line 21) | def split_recipe_file(self, file): method get_recipe_from_file (line 29) | def get_recipe_from_file(self, file): method get_file_from_recipe (line 137) | def get_file_from_recipe(self, recipe): FILE: cookbook/integration/recipekeeper.py class RecipeKeeper (line 14) | class RecipeKeeper(Integration): method import_file_name_filter (line 16) | def import_file_name_filter(self, zip_info_object): method split_recipe_file (line 19) | def split_recipe_file(self, file): method get_recipe_from_file (line 23) | def get_recipe_from_file(self, file): method get_file_from_recipe (line 86) | def get_file_from_recipe(self, recipe): FILE: cookbook/integration/recipesage.py class RecipeSage (line 12) | class RecipeSage(Integration): method get_recipe_from_file (line 14) | def get_recipe_from_file(self, file): method get_file_from_recipe (line 91) | def get_file_from_recipe(self, recipe): method get_files_from_recipes (line 120) | def get_files_from_recipes(self, recipes, el, cookie): method split_recipe_file (line 131) | def split_recipe_file(self, file): FILE: cookbook/integration/rezeptsuitede.py class Rezeptsuitede (line 11) | class Rezeptsuitede(Integration): method split_recipe_file (line 13) | def split_recipe_file(self, file): method get_recipe_from_file (line 16) | def get_recipe_from_file(self, file): method get_file_from_recipe (line 77) | def get_file_from_recipe(self, recipe): FILE: cookbook/integration/rezkonv.py class RezKonv (line 6) | class RezKonv(Integration): method get_recipe_from_file (line 8) | def get_recipe_from_file(self, file): method get_file_from_recipe (line 57) | def get_file_from_recipe(self, recipe): method split_recipe_file (line 60) | def split_recipe_file(self, file): FILE: cookbook/integration/saffron.py class Saffron (line 8) | class Saffron(Integration): method get_recipe_from_file (line 10) | def get_recipe_from_file(self, file): method get_file_from_recipe (line 60) | def get_file_from_recipe(self, recipe): method get_files_from_recipes (line 89) | def get_files_from_recipes(self, recipes, el, cookie): FILE: cookbook/management/commands/export.py class Command (line 5) | class Command(DumpdataCommand): method handle (line 6) | def handle(self, *args, **options): FILE: cookbook/management/commands/fix_duplicate_properties.py class Command (line 14) | class Command(BaseCommand): method add_arguments (line 17) | def add_arguments(self, parser): method handle (line 20) | def handle(self, *args, **options): FILE: cookbook/management/commands/import.py class Command (line 5) | class Command(LoaddataCommand): method handle (line 6) | def handle(self, *args, **options): FILE: cookbook/management/commands/rebuildindex.py class Command (line 13) | class Command(BaseCommand): method handle (line 16) | def handle(self, *args, **options): FILE: cookbook/management/commands/seed_basic_data.py class Command (line 13) | class Command(BaseCommand): method handle (line 16) | def handle(self, *args, **options): FILE: cookbook/managers.py class RecipeSearchManager (line 24) | class RecipeSearchManager(models.Manager): method search (line 25) | def search(self, search_text, space): FILE: cookbook/migrations/0001_initial.py class Migration (line 8) | class Migration(migrations.Migration): FILE: cookbook/migrations/0001_squashed_0227_space_ai_default_provider_and_more.py function allSearchFields (line 21) | def allSearchFields(): function nameSearchField (line 25) | def nameSearchField(): function create_default_groups (line 29) | def create_default_groups(apps, schema_editor): function create_fields (line 39) | def create_fields(apps, schema_editor): class Migration (line 59) | class Migration(migrations.Migration): FILE: cookbook/migrations/0002_auto_20191119_2035.py class Migration (line 6) | class Migration(migrations.Migration): FILE: cookbook/migrations/0003_enable_pgtrm.py class Migration (line 5) | class Migration(migrations.Migration): FILE: cookbook/migrations/0004_storage_created_by.py class Migration (line 8) | class Migration(migrations.Migration): FILE: cookbook/migrations/0005_recipebook_recipebookentry.py class Migration (line 8) | class Migration(migrations.Migration): FILE: cookbook/migrations/0006_recipe_image.py class Migration (line 6) | class Migration(migrations.Migration): FILE: cookbook/migrations/0007_auto_20191226_0852.py class Migration (line 6) | class Migration(migrations.Migration): FILE: cookbook/migrations/0008_mealplan.py class Migration (line 8) | class Migration(migrations.Migration): FILE: cookbook/migrations/0009_auto_20200130_1056.py class Migration (line 7) | class Migration(migrations.Migration): FILE: cookbook/migrations/0010_auto_20200130_1059.py function migrate_ingredient_units (line 7) | def migrate_ingredient_units(apps, schema_editor): class Migration (line 22) | class Migration(migrations.Migration): FILE: cookbook/migrations/0011_remove_recipeingredients_unit.py class Migration (line 6) | class Migration(migrations.Migration): FILE: cookbook/migrations/0012_auto_20200130_1116.py class Migration (line 6) | class Migration(migrations.Migration): FILE: cookbook/migrations/0013_userpreference.py class Migration (line 8) | class Migration(migrations.Migration): FILE: cookbook/migrations/0014_auto_20200213_2332.py class Migration (line 8) | class Migration(migrations.Migration): FILE: cookbook/migrations/0015_auto_20200213_2334.py class Migration (line 8) | class Migration(migrations.Migration): FILE: cookbook/migrations/0016_auto_20200213_2335.py class Migration (line 8) | class Migration(migrations.Migration): FILE: cookbook/migrations/0017_auto_20200216_2257.py class Migration (line 6) | class Migration(migrations.Migration): FILE: cookbook/migrations/0018_auto_20200216_2303.py class Migration (line 6) | class Migration(migrations.Migration): FILE: cookbook/migrations/0019_ingredient.py class Migration (line 6) | class Migration(migrations.Migration): FILE: cookbook/migrations/0020_recipeingredient_ingredient.py class Migration (line 7) | class Migration(migrations.Migration): FILE: cookbook/migrations/0021_auto_20200216_2309.py function migrate_ingredients (line 6) | def migrate_ingredients(apps, schema_editor): class Migration (line 21) | class Migration(migrations.Migration): FILE: cookbook/migrations/0022_remove_recipeingredient_name.py class Migration (line 6) | class Migration(migrations.Migration): FILE: cookbook/migrations/0023_auto_20200216_2311.py class Migration (line 6) | class Migration(migrations.Migration): FILE: cookbook/migrations/0024_auto_20200216_2313.py class Migration (line 6) | class Migration(migrations.Migration): FILE: cookbook/migrations/0025_userpreference_nav_color.py class Migration (line 6) | class Migration(migrations.Migration): FILE: cookbook/migrations/0026_auto_20200219_1605.py class Migration (line 6) | class Migration(migrations.Migration): FILE: cookbook/migrations/0027_ingredient_recipe.py class Migration (line 7) | class Migration(migrations.Migration): FILE: cookbook/migrations/0028_auto_20200317_1901.py class Migration (line 7) | class Migration(migrations.Migration): FILE: cookbook/migrations/0029_auto_20200317_1901.py class Migration (line 7) | class Migration(migrations.Migration): FILE: cookbook/migrations/0030_recipeingredient_note.py class Migration (line 6) | class Migration(migrations.Migration): FILE: cookbook/migrations/0031_auto_20200407_1841.py class Migration (line 6) | class Migration(migrations.Migration): FILE: cookbook/migrations/0032_userpreference_default_unit.py class Migration (line 6) | class Migration(migrations.Migration): FILE: cookbook/migrations/0033_userpreference_default_page.py class Migration (line 6) | class Migration(migrations.Migration): FILE: cookbook/migrations/0034_auto_20200426_1614.py function apply_migration (line 7) | def apply_migration(apps, schema_editor): class Migration (line 17) | class Migration(migrations.Migration): FILE: cookbook/migrations/0035_auto_20200427_1637.py class Migration (line 6) | class Migration(migrations.Migration): FILE: cookbook/migrations/0036_auto_20200427_1800.py function apply_migration (line 7) | def apply_migration(apps, schema_editor): class Migration (line 17) | class Migration(migrations.Migration): FILE: cookbook/migrations/0037_userpreference_search_style.py class Migration (line 6) | class Migration(migrations.Migration): FILE: cookbook/migrations/0038_auto_20200502_1259.py class Migration (line 6) | class Migration(migrations.Migration): FILE: cookbook/migrations/0039_recipebook_shared.py class Migration (line 7) | class Migration(migrations.Migration): FILE: cookbook/migrations/0040_auto_20200502_1433.py class Migration (line 9) | class Migration(migrations.Migration): FILE: cookbook/migrations/0041_auto_20200502_1446.py class Migration (line 7) | class Migration(migrations.Migration): FILE: cookbook/migrations/0042_cooklog.py class Migration (line 8) | class Migration(migrations.Migration): FILE: cookbook/migrations/0043_auto_20200507_2302.py class Migration (line 7) | class Migration(migrations.Migration): FILE: cookbook/migrations/0044_viewlog.py class Migration (line 8) | class Migration(migrations.Migration): FILE: cookbook/migrations/0045_userpreference_show_recent.py class Migration (line 6) | class Migration(migrations.Migration): FILE: cookbook/migrations/0046_auto_20200602_1133.py class Migration (line 7) | class Migration(migrations.Migration): FILE: cookbook/migrations/0047_auto_20200602_1133.py function migrate_meal_types (line 8) | def migrate_meal_types(apps, schema_editor): class Migration (line 46) | class Migration(migrations.Migration): FILE: cookbook/migrations/0048_auto_20200602_1140.py class Migration (line 7) | class Migration(migrations.Migration): FILE: cookbook/migrations/0049_mealtype_created_by.py class Migration (line 8) | class Migration(migrations.Migration): FILE: cookbook/migrations/0050_auto_20200611_1509.py function migrate_meal_types (line 8) | def migrate_meal_types(apps, schema_editor): class Migration (line 25) | class Migration(migrations.Migration): FILE: cookbook/migrations/0051_auto_20200611_1518.py class Migration (line 8) | class Migration(migrations.Migration): FILE: cookbook/migrations/0052_userpreference_ingredient_decimals.py class Migration (line 6) | class Migration(migrations.Migration): FILE: cookbook/migrations/0053_auto_20200611_2217.py class Migration (line 6) | class Migration(migrations.Migration): FILE: cookbook/migrations/0054_sharelink.py class Migration (line 9) | class Migration(migrations.Migration): FILE: cookbook/migrations/0055_auto_20200616_1236.py class Migration (line 7) | class Migration(migrations.Migration): FILE: cookbook/migrations/0056_auto_20200625_2118.py class Migration (line 7) | class Migration(migrations.Migration): FILE: cookbook/migrations/0056_auto_20200625_2157.py function invalidate_shares (line 9) | def invalidate_shares(apps, schema_editor): class Migration (line 16) | class Migration(migrations.Migration): FILE: cookbook/migrations/0057_auto_20200625_2127.py class Migration (line 7) | class Migration(migrations.Migration): FILE: cookbook/migrations/0058_auto_20200625_2128.py class Migration (line 7) | class Migration(migrations.Migration): FILE: cookbook/migrations/0059_auto_20200625_2137.py function migrate_ingredients (line 7) | def migrate_ingredients(apps, schema_editor): class Migration (line 18) | class Migration(migrations.Migration): FILE: cookbook/migrations/0060_auto_20200625_2144.py class Migration (line 7) | class Migration(migrations.Migration): FILE: cookbook/migrations/0061_merge_20200625_2209.py class Migration (line 6) | class Migration(migrations.Migration): FILE: cookbook/migrations/0062_auto_20200625_2219.py function create_default_step (line 7) | def create_default_step(apps, schema_editor): class Migration (line 23) | class Migration(migrations.Migration): FILE: cookbook/migrations/0063_auto_20200625_2230.py class Migration (line 6) | class Migration(migrations.Migration): FILE: cookbook/migrations/0064_auto_20200625_2329.py class Migration (line 6) | class Migration(migrations.Migration): FILE: cookbook/migrations/0065_auto_20200626_1444.py class Migration (line 6) | class Migration(migrations.Migration): FILE: cookbook/migrations/0066_auto_20200626_1455.py class Migration (line 6) | class Migration(migrations.Migration): FILE: cookbook/migrations/0067_auto_20200629_1508.py class Migration (line 6) | class Migration(migrations.Migration): FILE: cookbook/migrations/0068_auto_20200629_2127.py function convert_old_specials (line 8) | def convert_old_specials(apps, schema_editor): class Migration (line 30) | class Migration(migrations.Migration): FILE: cookbook/migrations/0069_auto_20200629_2134.py class Migration (line 6) | class Migration(migrations.Migration): FILE: cookbook/migrations/0070_auto_20200701_2007.py class Migration (line 6) | class Migration(migrations.Migration): FILE: cookbook/migrations/0071_auto_20200701_2048.py class Migration (line 6) | class Migration(migrations.Migration): FILE: cookbook/migrations/0072_step_show_as_header.py class Migration (line 6) | class Migration(migrations.Migration): FILE: cookbook/migrations/0073_auto_20200708_2311.py class Migration (line 6) | class Migration(migrations.Migration): FILE: cookbook/migrations/0074_remove_keyword_created_by.py class Migration (line 6) | class Migration(migrations.Migration): FILE: cookbook/migrations/0075_shoppinglist_shoppinglistentry_shoppinglistrecipe.py class Migration (line 9) | class Migration(migrations.Migration): FILE: cookbook/migrations/0076_shoppinglist_entries.py class Migration (line 6) | class Migration(migrations.Migration): FILE: cookbook/migrations/0077_invitelink.py class Migration (line 10) | class Migration(migrations.Migration): FILE: cookbook/migrations/0078_invitelink_used_by.py class Migration (line 8) | class Migration(migrations.Migration): FILE: cookbook/migrations/0079_invitelink_group.py class Migration (line 7) | class Migration(migrations.Migration): FILE: cookbook/migrations/0080_auto_20200921_2331.py class Migration (line 7) | class Migration(migrations.Migration): FILE: cookbook/migrations/0081_auto_20200921_2349.py class Migration (line 6) | class Migration(migrations.Migration): FILE: cookbook/migrations/0082_auto_20200922_1143.py class Migration (line 7) | class Migration(migrations.Migration): FILE: cookbook/migrations/0083_space.py class Migration (line 6) | class Migration(migrations.Migration): FILE: cookbook/migrations/0084_auto_20200922_1233.py function create_default_space (line 6) | def create_default_space(apps, schema_editor): class Migration (line 15) | class Migration(migrations.Migration): FILE: cookbook/migrations/0085_auto_20200922_1235.py class Migration (line 6) | class Migration(migrations.Migration): FILE: cookbook/migrations/0086_auto_20200929_1143.py class Migration (line 7) | class Migration(migrations.Migration): FILE: cookbook/migrations/0087_auto_20200929_1152.py class Migration (line 6) | class Migration(migrations.Migration): FILE: cookbook/migrations/0088_shoppinglist_finished.py class Migration (line 6) | class Migration(migrations.Migration): FILE: cookbook/migrations/0089_auto_20201117_2222.py class Migration (line 8) | class Migration(migrations.Migration): FILE: cookbook/migrations/0090_auto_20201214_1359.py class Migration (line 7) | class Migration(migrations.Migration): FILE: cookbook/migrations/0091_auto_20201226_1551.py function migrate_empty_units (line 6) | def migrate_empty_units(apps, schema_editor): class Migration (line 19) | class Migration(migrations.Migration): FILE: cookbook/migrations/0092_recipe_servings.py class Migration (line 6) | class Migration(migrations.Migration): FILE: cookbook/migrations/0093_auto_20201231_1236.py class Migration (line 8) | class Migration(migrations.Migration): FILE: cookbook/migrations/0094_auto_20201231_1238.py class Migration (line 6) | class Migration(migrations.Migration): FILE: cookbook/migrations/0095_auto_20210107_1804.py class Migration (line 7) | class Migration(migrations.Migration): FILE: cookbook/migrations/0096_auto_20210109_2044.py function delete_duplicate_bookmarks (line 6) | def delete_duplicate_bookmarks(apps, schema_editor): class Migration (line 19) | class Migration(migrations.Migration): FILE: cookbook/migrations/0097_auto_20210113_1315.py class Migration (line 8) | class Migration(migrations.Migration): FILE: cookbook/migrations/0098_auto_20210113_1320.py class Migration (line 7) | class Migration(migrations.Migration): FILE: cookbook/migrations/0099_auto_20210113_1518.py class Migration (line 7) | class Migration(migrations.Migration): FILE: cookbook/migrations/0100_recipe_servings_text.py class Migration (line 6) | class Migration(migrations.Migration): FILE: cookbook/migrations/0101_storage_path.py class Migration (line 6) | class Migration(migrations.Migration): FILE: cookbook/migrations/0102_auto_20210125_1147.py class Migration (line 8) | class Migration(migrations.Migration): FILE: cookbook/migrations/0103_food_ignore_shopping.py class Migration (line 6) | class Migration(migrations.Migration): FILE: cookbook/migrations/0104_auto_20210125_2133.py class Migration (line 7) | class Migration(migrations.Migration): FILE: cookbook/migrations/0105_auto_20210126_1604.py class Migration (line 7) | class Migration(migrations.Migration): FILE: cookbook/migrations/0106_shoppinglist_supermarket.py class Migration (line 7) | class Migration(migrations.Migration): FILE: cookbook/migrations/0107_auto_20210128_1535.py class Migration (line 6) | class Migration(migrations.Migration): FILE: cookbook/migrations/0108_auto_20210219_1410.py class Migration (line 7) | class Migration(migrations.Migration): FILE: cookbook/migrations/0109_auto_20210221_1204.py class Migration (line 7) | class Migration(migrations.Migration): FILE: cookbook/migrations/0110_auto_20210221_1406.py class Migration (line 7) | class Migration(migrations.Migration): FILE: cookbook/migrations/0111_space_created_by.py function set_default_owner (line 9) | def set_default_owner(apps, schema_editor): class Migration (line 19) | class Migration(migrations.Migration): FILE: cookbook/migrations/0112_remove_synclog_space.py class Migration (line 6) | class Migration(migrations.Migration): FILE: cookbook/migrations/0113_auto_20210317_2017.py class Migration (line 6) | class Migration(migrations.Migration): FILE: cookbook/migrations/0114_importlog.py class Migration (line 9) | class Migration(migrations.Migration): FILE: cookbook/migrations/0115_telegrambot.py class Migration (line 10) | class Migration(migrations.Migration): FILE: cookbook/migrations/0116_auto_20210319_0012.py function remove_empty_food_unit (line 7) | def remove_empty_food_unit(apps, schema_editor): class Migration (line 34) | class Migration(migrations.Migration): FILE: cookbook/migrations/0117_space_max_recipes.py class Migration (line 6) | class Migration(migrations.Migration): FILE: cookbook/migrations/0118_auto_20210406_1805.py function migrate_no_group_superusers (line 7) | def migrate_no_group_superusers(apps, schema_editor): class Migration (line 17) | class Migration(migrations.Migration): FILE: cookbook/migrations/0119_auto_20210411_2101.py class Migration (line 6) | class Migration(migrations.Migration): FILE: cookbook/migrations/0120_bookmarklet.py class Migration (line 9) | class Migration(migrations.Migration): FILE: cookbook/migrations/0121_auto_20210518_1638.py class Migration (line 6) | class Migration(migrations.Migration): FILE: cookbook/migrations/0122_auto_20210527_1712.py class Migration (line 6) | class Migration(migrations.Migration): FILE: cookbook/migrations/0123_invitelink_email.py class Migration (line 6) | class Migration(migrations.Migration): FILE: cookbook/migrations/0124_alter_userpreference_theme.py class Migration (line 6) | class Migration(migrations.Migration): FILE: cookbook/migrations/0125_space_demo.py class Migration (line 6) | class Migration(migrations.Migration): FILE: cookbook/migrations/0126_alter_userpreference_theme.py class Migration (line 6) | class Migration(migrations.Migration): FILE: cookbook/migrations/0127_remove_invitelink_username.py class Migration (line 6) | class Migration(migrations.Migration): FILE: cookbook/migrations/0128_userfile.py class Migration (line 9) | class Migration(migrations.Migration): FILE: cookbook/migrations/0129_auto_20210608_1233.py class Migration (line 6) | class Migration(migrations.Migration): FILE: cookbook/migrations/0130_alter_userfile_file_size_kb.py class Migration (line 6) | class Migration(migrations.Migration): FILE: cookbook/migrations/0131_auto_20210608_1929.py class Migration (line 7) | class Migration(migrations.Migration): FILE: cookbook/migrations/0132_sharelink_request_count.py class Migration (line 6) | class Migration(migrations.Migration): FILE: cookbook/migrations/0133_sharelink_abuse_blocked.py class Migration (line 6) | class Migration(migrations.Migration): FILE: cookbook/migrations/0134_space_allow_sharing.py class Migration (line 6) | class Migration(migrations.Migration): FILE: cookbook/migrations/0135_auto_20210615_2210.py class Migration (line 7) | class Migration(migrations.Migration): FILE: cookbook/migrations/0136_auto_20210617_1343.py class Migration (line 6) | class Migration(migrations.Migration): FILE: cookbook/migrations/0137_auto_20210617_1501.py function migrate_spaces (line 10) | def migrate_spaces(apps, schema_editor): class Migration (line 26) | class Migration(migrations.Migration): FILE: cookbook/migrations/0138_auto_20210617_1602.py class Migration (line 10) | class Migration(migrations.Migration): FILE: cookbook/migrations/0139_space_created_at.py class Migration (line 7) | class Migration(migrations.Migration): FILE: cookbook/migrations/0140_userpreference_created_at.py class Migration (line 7) | class Migration(migrations.Migration): FILE: cookbook/migrations/0141_auto_20210713_1042.py class Migration (line 7) | class Migration(migrations.Migration): FILE: cookbook/migrations/0142_alter_userpreference_search_style.py class Migration (line 6) | class Migration(migrations.Migration): FILE: cookbook/migrations/0143_build_full_text_index.py function allSearchFields (line 15) | def allSearchFields(): function nameSearchField (line 19) | def nameSearchField(): function set_default_search_vector (line 23) | def set_default_search_vector(apps, schema_editor): class Migration (line 35) | class Migration(migrations.Migration): FILE: cookbook/migrations/0144_create_searchfields.py function create_searchfields (line 5) | def create_searchfields(apps, schema_editor): class Migration (line 13) | class Migration(migrations.Migration): FILE: cookbook/migrations/0145_alter_userpreference_search_style.py class Migration (line 6) | class Migration(migrations.Migration): FILE: cookbook/migrations/0146_alter_userpreference_use_fractions.py class Migration (line 6) | class Migration(migrations.Migration): FILE: cookbook/migrations/0147_keyword_to_tree.py function update_paths (line 12) | def update_paths(apps, schema_editor): function backwards (line 23) | def backwards(apps, schema_editor): class Migration (line 27) | class Migration(migrations.Migration): FILE: cookbook/migrations/0148_auto_20210813_1829.py class Migration (line 6) | class Migration(migrations.Migration): FILE: cookbook/migrations/0149_fix_leading_trailing_spaces.py function update_paths (line 5) | def update_paths(apps, schema_editor): function backwards (line 19) | def backwards(apps, schema_editor): class Migration (line 23) | class Migration(migrations.Migration): FILE: cookbook/migrations/0150_food_to_tree.py function update_paths (line 12) | def update_paths(apps, schema_editor): function backwards (line 23) | def backwards(apps, schema_editor): class Migration (line 27) | class Migration(migrations.Migration): FILE: cookbook/migrations/0151_auto_20210915_1037.py class Migration (line 7) | class Migration(migrations.Migration): FILE: cookbook/migrations/0152_automation.py class Migration (line 9) | class Migration(migrations.Migration): FILE: cookbook/migrations/0153_auto_20210915_2327.py class Migration (line 7) | class Migration(migrations.Migration): FILE: cookbook/migrations/0154_auto_20210922_1705.py class Migration (line 6) | class Migration(migrations.Migration): FILE: cookbook/migrations/0155_mealtype_default.py class Migration (line 6) | class Migration(migrations.Migration): FILE: cookbook/migrations/0156_searchpreference_trigram_threshold.py class Migration (line 6) | class Migration(migrations.Migration): FILE: cookbook/migrations/0157_alter_searchpreference_trigram.py function nameSearchField (line 9) | def nameSearchField(): function add_default_trigram (line 13) | def add_default_trigram(apps, schema_editor): class Migration (line 26) | class Migration(migrations.Migration): FILE: cookbook/migrations/0158_userpreference_use_kj.py class Migration (line 6) | class Migration(migrations.Migration): FILE: cookbook/migrations/0159_add_shoppinglistentry_fields.py function copy_values_to_sle (line 12) | def copy_values_to_sle(apps, schema_editor): class Migration (line 24) | class Migration(migrations.Migration): FILE: cookbook/migrations/0160_delete_shoppinglist_orphans.py function delete_orphaned_sle (line 11) | def delete_orphaned_sle(apps, schema_editor): function create_inheritfields (line 18) | def create_inheritfields(apps, schema_editor): function set_completed_at (line 28) | def set_completed_at(apps, schema_editor): class Migration (line 37) | class Migration(migrations.Migration): FILE: cookbook/migrations/0161_alter_shoppinglistentry_food.py class Migration (line 7) | class Migration(migrations.Migration): FILE: cookbook/migrations/0162_userpreference_csv_delim.py class Migration (line 6) | class Migration(migrations.Migration): FILE: cookbook/migrations/0163_auto_20220105_0758.py function rename_inherit_field (line 9) | def rename_inherit_field(apps, schema_editor): class Migration (line 17) | class Migration(migrations.Migration): FILE: cookbook/migrations/0164_space_show_facet_count.py class Migration (line 6) | class Migration(migrations.Migration): FILE: cookbook/migrations/0165_remove_step_type.py class Migration (line 6) | class Migration(migrations.Migration): FILE: cookbook/migrations/0166_alter_userpreference_shopping_add_onhand.py function add_default_trigram (line 7) | def add_default_trigram(apps, schema_editor): class Migration (line 14) | class Migration(migrations.Migration): FILE: cookbook/migrations/0167_userpreference_left_handed.py class Migration (line 6) | class Migration(migrations.Migration): FILE: cookbook/migrations/0168_add_unit_searchfields.py function create_searchfields (line 6) | def create_searchfields(apps, schema_editor): class Migration (line 10) | class Migration(migrations.Migration): FILE: cookbook/migrations/0169_exportlog.py class Migration (line 10) | class Migration(migrations.Migration): FILE: cookbook/migrations/0170_auto_20220207_1848.py class Migration (line 10) | class Migration(migrations.Migration): FILE: cookbook/migrations/0171_alter_searchpreference_trigram_threshold.py class Migration (line 6) | class Migration(migrations.Migration): FILE: cookbook/migrations/0172_ingredient_original_text.py class Migration (line 6) | class Migration(migrations.Migration): FILE: cookbook/migrations/0173_recipe_source_url.py class Migration (line 6) | class Migration(migrations.Migration): FILE: cookbook/migrations/0174_alter_food_substitute_userspace.py function migrate_space_permissions (line 9) | def migrate_space_permissions(apps, schema_editor): class Migration (line 19) | class Migration(migrations.Migration): FILE: cookbook/migrations/0175_remove_userpreference_space.py class Migration (line 6) | class Migration(migrations.Migration): FILE: cookbook/migrations/0176_alter_searchpreference_icontains_and_more.py class Migration (line 6) | class Migration(migrations.Migration): FILE: cookbook/migrations/0177_recipe_show_ingredient_overview.py class Migration (line 6) | class Migration(migrations.Migration): FILE: cookbook/migrations/0178_remove_userpreference_search_style_and_more.py class Migration (line 6) | class Migration(migrations.Migration): FILE: cookbook/migrations/0179_recipe_private_recipe_shared.py class Migration (line 7) | class Migration(migrations.Migration): FILE: cookbook/migrations/0180_invitelink_reusable.py class Migration (line 6) | class Migration(migrations.Migration): FILE: cookbook/migrations/0181_space_image.py class Migration (line 7) | class Migration(migrations.Migration): FILE: cookbook/migrations/0182_userpreference_image.py class Migration (line 7) | class Migration(migrations.Migration): FILE: cookbook/migrations/0183_alter_space_image.py class Migration (line 7) | class Migration(migrations.Migration): FILE: cookbook/migrations/0184_alter_userpreference_image.py class Migration (line 7) | class Migration(migrations.Migration): FILE: cookbook/migrations/0185_food_plural_name_ingredient_always_use_plural_food_and_more.py class Migration (line 6) | class Migration(migrations.Migration): FILE: cookbook/migrations/0186_automation_order_alter_automation_type.py class Migration (line 6) | class Migration(migrations.Migration): FILE: cookbook/migrations/0187_alter_space_use_plural.py class Migration (line 6) | class Migration(migrations.Migration): FILE: cookbook/migrations/0188_space_no_sharing_limit.py class Migration (line 6) | class Migration(migrations.Migration): FILE: cookbook/migrations/0189_property_propertytype_unitconversion_food_fdc_id_and_more.py class Migration (line 10) | class Migration(migrations.Migration): FILE: cookbook/migrations/0190_auto_20230525_1506.py function migrate_old_nutrition_data (line 7) | def migrate_old_nutrition_data(apps, schema_editor): class Migration (line 30) | class Migration(migrations.Migration): FILE: cookbook/migrations/0191_foodproperty_property_import_food_id_and_more.py class Migration (line 7) | class Migration(migrations.Migration): FILE: cookbook/migrations/0192_food_food_unique_open_data_slug_per_space_and_more.py class Migration (line 6) | class Migration(migrations.Migration): FILE: cookbook/migrations/0193_space_internal_note.py class Migration (line 6) | class Migration(migrations.Migration): FILE: cookbook/migrations/0194_alter_food_properties_food_amount.py class Migration (line 6) | class Migration(migrations.Migration): FILE: cookbook/migrations/0195_invitelink_internal_note_userspace_internal_note_and_more.py class Migration (line 7) | class Migration(migrations.Migration): FILE: cookbook/migrations/0196_food_url.py class Migration (line 6) | class Migration(migrations.Migration): FILE: cookbook/migrations/0197_step_show_ingredients_table_and_more.py class Migration (line 6) | class Migration(migrations.Migration): FILE: cookbook/migrations/0198_propertytype_order.py class Migration (line 6) | class Migration(migrations.Migration): FILE: cookbook/migrations/0199_alter_propertytype_options_alter_automation_type_and_more.py class Migration (line 6) | class Migration(migrations.Migration): FILE: cookbook/migrations/0200_alter_propertytype_options_remove_keyword_icon_and_more.py function migrate_icons (line 9) | def migrate_icons(apps, schema_editor): class Migration (line 37) | class Migration(migrations.Migration): FILE: cookbook/migrations/0201_rename_date_mealplan_from_date_mealplan_to_date.py function apply_migration (line 8) | def apply_migration(apps, schema_editor): class Migration (line 14) | class Migration(migrations.Migration): FILE: cookbook/migrations/0202_remove_space_show_facet_count.py class Migration (line 6) | class Migration(migrations.Migration): FILE: cookbook/migrations/0203_alter_unique_contstraints.py class Migration (line 6) | class Migration(migrations.Migration): FILE: cookbook/migrations/0204_propertytype_fdc_id.py class Migration (line 9) | class Migration(migrations.Migration): FILE: cookbook/migrations/0205_alter_food_fdc_id_alter_propertytype_fdc_id.py function fix_fdc_ids (line 7) | def fix_fdc_ids(apps, schema_editor): class Migration (line 14) | class Migration(migrations.Migration): FILE: cookbook/migrations/0206_rename_sticky_navbar_userpreference_nav_sticky_and_more.py function get_nav_bg_color (line 24) | def get_nav_bg_color(theme, nav_color): function get_nav_text_color (line 39) | def get_nav_text_color(theme, nav_color): function get_current_colors (line 54) | def get_current_colors(apps, schema_editor): class Migration (line 70) | class Migration(migrations.Migration): FILE: cookbook/migrations/0207_space_logo_color_128_space_logo_color_144_and_more.py class Migration (line 7) | class Migration(migrations.Migration): FILE: cookbook/migrations/0208_space_app_name_userpreference_max_owned_spaces.py class Migration (line 6) | class Migration(migrations.Migration): FILE: cookbook/migrations/0209_remove_space_use_plural.py class Migration (line 6) | class Migration(migrations.Migration): FILE: cookbook/migrations/0210_shoppinglistentry_updated_at.py class Migration (line 6) | class Migration(migrations.Migration): FILE: cookbook/migrations/0211_recipebook_order.py class Migration (line 6) | class Migration(migrations.Migration): FILE: cookbook/migrations/0212_alter_property_property_amount.py class Migration (line 6) | class Migration(migrations.Migration): FILE: cookbook/migrations/0213_remove_property_property_unique_import_food_per_space_and_more.py function migrate_property_import_slug (line 7) | def migrate_property_import_slug(apps, schema_editor): class Migration (line 29) | class Migration(migrations.Migration): FILE: cookbook/migrations/0214_cooklog_comment_cooklog_updated_at_and_more.py class Migration (line 6) | class Migration(migrations.Migration): FILE: cookbook/migrations/0215_connectorconfig.py class Migration (line 10) | class Migration(migrations.Migration): FILE: cookbook/migrations/0216_delete_shoppinglist.py class Migration (line 6) | class Migration(migrations.Migration): FILE: cookbook/migrations/0217_alter_userpreference_default_page.py class Migration (line 6) | class Migration(migrations.Migration): FILE: cookbook/migrations/0218_alter_mealplan_from_date_alter_mealplan_to_date.py function timezone_correction (line 8) | def timezone_correction(apps, schema_editor): class Migration (line 24) | class Migration(migrations.Migration): FILE: cookbook/migrations/0219_connectorconfig_supports_description_field.py class Migration (line 6) | class Migration(migrations.Migration): FILE: cookbook/migrations/0220_shoppinglistrecipe_created_by_and_more.py class Migration (line 7) | class Migration(migrations.Migration): FILE: cookbook/migrations/0221_migrate_shoppinglistrecipe_space_created_by.py function add_space_and_owner_to_shopping_list_recipe (line 10) | def add_space_and_owner_to_shopping_list_recipe(apps, schema_editor): class Migration (line 35) | class Migration(migrations.Migration): FILE: cookbook/migrations/0222_alter_shoppinglistrecipe_created_by_and_more.py class Migration (line 8) | class Migration(migrations.Migration): FILE: cookbook/migrations/0223_auto_20250831_1111.py function migrate_comments (line 7) | def migrate_comments(apps, schema_editor): class Migration (line 26) | class Migration(migrations.Migration): FILE: cookbook/migrations/0224_space_ai_credits_balance_space_ai_credits_monthly_and_more.py class Migration (line 9) | class Migration(migrations.Migration): FILE: cookbook/migrations/0225_space_ai_enabled.py class Migration (line 6) | class Migration(migrations.Migration): FILE: cookbook/migrations/0226_aiprovider_log_credit_cost_and_more.py class Migration (line 6) | class Migration(migrations.Migration): FILE: cookbook/migrations/0227_space_ai_default_provider_and_more.py class Migration (line 7) | class Migration(migrations.Migration): FILE: cookbook/migrations/0228_space_space_setup_completed.py class Migration (line 6) | class Migration(migrations.Migration): FILE: cookbook/migrations/0229_alter_ailog_options_alter_aiprovider_options_and_more.py class Migration (line 6) | class Migration(migrations.Migration): FILE: cookbook/migrations/0230_auto_20250925_2056.py class Migration (line 6) | class Migration(migrations.Migration): FILE: cookbook/migrations/0231_alter_aiprovider_options_alter_automation_options_and_more.py class Migration (line 6) | class Migration(migrations.Migration): FILE: cookbook/migrations/0232_shoppinglist.py class Migration (line 9) | class Migration(migrations.Migration): FILE: cookbook/migrations/0233_food_shopping_lists_shoppinglistentry_shopping_lists_and_more.py class Migration (line 6) | class Migration(migrations.Migration): FILE: cookbook/migrations/0234_alter_shoppinglist_options_and_more.py class Migration (line 6) | class Migration(migrations.Migration): FILE: cookbook/migrations/0235_recipe_diameter_recipe_diameter_text.py class Migration (line 6) | class Migration(migrations.Migration): FILE: cookbook/migrations/0236_household_userspace_household_inventorylocation_and_more.py class Migration (line 9) | class Migration(migrations.Migration): FILE: cookbook/migrations/0237_remove_mealtype_mt_unique_name_per_space_and_more.py function apply_migration (line 11) | def apply_migration(apps, schema_editor): class Migration (line 47) | class Migration(migrations.Migration): FILE: cookbook/migrations/0238_auto_20260312_1920.py class Migration (line 6) | class Migration(migrations.Migration): FILE: cookbook/models.py function get_user_display_name (line 30) | def get_user_display_name(self): function get_active_space (line 37) | def get_active_space(self): function oauth_token_get_owner (line 54) | def oauth_token_get_owner(self): function get_model_name (line 61) | def get_model_name(model): class TreeManager (line 65) | class TreeManager(MP_NodeManager): method create (line 66) | def create(self, *args, **kwargs): method get_or_create (line 70) | def get_or_create(self, *args, **kwargs): class TreeModel (line 103) | class TreeModel(MP_Node): method __str__ (line 106) | def __str__(self): method parent (line 110) | def parent(self): method full_name (line 117) | def full_name(self) -> str: method get_ancestors_and_self (line 125) | def get_ancestors_and_self(self): method get_descendants_and_self (line 135) | def get_descendants_and_self(self): method has_children (line 143) | def has_children(self): method get_num_children (line 146) | def get_num_children(self): method add_root (line 151) | def add_root(self, **kwargs): method include_descendants (line 157) | def include_descendants(queryset=None, filter=None): method exclude_descendants (line 170) | def exclude_descendants(queryset=None, filter=None): method include_ancestors (line 182) | def include_ancestors(queryset=None): class Meta (line 196) | class Meta: class MergeModelMixin (line 200) | class MergeModelMixin: method merge_into (line 202) | def merge_into(self, target): class PermissionModelMixin (line 221) | class PermissionModelMixin: method get_space_key (line 223) | def get_space_key(): method get_space_kwarg (line 226) | def get_space_kwarg(self): method get_owner (line 229) | def get_owner(self): method get_shared (line 236) | def get_shared(self): method get_space (line 241) | def get_space(self): class FoodInheritField (line 250) | class FoodInheritField(models.Model, PermissionModelMixin): method __str__ (line 254) | def __str__(self): method get_name (line 258) | def get_name(self): class Space (line 262) | class Space(ExportModelOperationsMixin('space'), models.Model): method safe_delete (line 329) | def safe_delete(self): method get_owner (line 387) | def get_owner(self): method get_space (line 390) | def get_space(self): method __str__ (line 393) | def __str__(self): class Meta (line 396) | class Meta: class AiProvider (line 400) | class AiProvider(models.Model): method __str__ (line 414) | def __str__(self): class Meta (line 417) | class Meta: class AiLog (line 421) | class AiLog(models.Model, PermissionModelMixin): method __str__ (line 443) | def __str__(self): class Meta (line 446) | class Meta: class ConnectorConfig (line 450) | class ConnectorConfig(models.Model, PermissionModelMixin): class Meta (line 474) | class Meta: class UserPreference (line 478) | class UserPreference(models.Model, PermissionModelMixin): method save (line 553) | def save(self, *args, **kwargs): method __str__ (line 563) | def __str__(self): class Household (line 567) | class Household(models.Model, PermissionModelMixin): class UserSpace (line 576) | class UserSpace(models.Model, PermissionModelMixin): class Meta (line 592) | class Meta: class Storage (line 596) | class Storage(models.Model, PermissionModelMixin): method __str__ (line 616) | def __str__(self): class Meta (line 619) | class Meta: class Sync (line 623) | class Sync(models.Model, PermissionModelMixin): method __str__ (line 634) | def __str__(self): class Meta (line 637) | class Meta: class SupermarketCategory (line 641) | class SupermarketCategory(models.Model, PermissionModelMixin, MergeModel... method __str__ (line 649) | def __str__(self): method merge_into (line 652) | def merge_into(self, target): class Meta (line 660) | class Meta: class Supermarket (line 668) | class Supermarket(models.Model, PermissionModelMixin): method __str__ (line 678) | def __str__(self): class Meta (line 681) | class Meta: class SupermarketCategoryRelation (line 689) | class SupermarketCategoryRelation(models.Model, PermissionModelMixin): method get_space_key (line 697) | def get_space_key(): class Meta (line 700) | class Meta: class SyncLog (line 707) | class SyncLog(models.Model, PermissionModelMixin): method __str__ (line 715) | def __str__(self): class Meta (line 718) | class Meta: class Keyword (line 722) | class Keyword(ExportModelOperationsMixin('keyword'), TreeModel, Permissi... class Meta (line 733) | class Meta: class Unit (line 741) | class Unit(ExportModelOperationsMixin('unit'), models.Model, PermissionM... method merge_into (line 751) | def merge_into(self, target): method __str__ (line 762) | def __str__(self): class Meta (line 765) | class Meta: class Food (line 773) | class Food(ExportModelOperationsMixin('food'), TreeModel, PermissionMode... method __str__ (line 809) | def __str__(self): method merge_into (line 812) | def merge_into(self, target): method move (line 839) | def move(self, *args, **kwargs): method reset_inheritance (line 851) | def reset_inheritance(space=None, food=None): class Meta (line 896) | class Meta: class UnitConversion (line 908) | class UnitConversion(ExportModelOperationsMixin('unit_conversion'), mode... method __str__ (line 924) | def __str__(self): class Meta (line 927) | class Meta: class Ingredient (line 935) | class Ingredient(ExportModelOperationsMixin('ingredient'), models.Model,... class Meta (line 954) | class Meta: class Step (line 961) | class Step(ExportModelOperationsMixin('step'), models.Model, PermissionM... method get_instruction_render (line 976) | def get_instruction_render(self): method __str__ (line 980) | def __str__(self): class Meta (line 985) | class Meta: class PropertyType (line 990) | class PropertyType(models.Model, PermissionModelMixin, MergeModelMixin): method __str__ (line 1019) | def __str__(self): method merge_into (line 1022) | def merge_into(self, target): class Meta (line 1029) | class Meta: class Property (line 1037) | class Property(models.Model, PermissionModelMixin): method __str__ (line 1046) | def __str__(self): class Meta (line 1049) | class Meta: class FoodProperty (line 1055) | class FoodProperty(models.Model): class Meta (line 1059) | class Meta: class NutritionInformation (line 1065) | class NutritionInformation(models.Model, PermissionModelMixin): method __str__ (line 1077) | def __str__(self): class RecipeManager (line 1081) | class RecipeManager(models.Manager.from_queryset(models.QuerySet)): method get_queryset (line 1082) | def get_queryset(self): class Recipe (line 1086) | class Recipe(ExportModelOperationsMixin('recipe'), models.Model, Permiss... method __str__ (line 1121) | def __str__(self): method get_related_recipes (line 1124) | def get_related_recipes(self, levels=1): class Meta (line 1139) | class Meta: class Comment (line 1149) | class Comment(ExportModelOperationsMixin('comment'), models.Model, Permi... method get_space_key (line 1159) | def get_space_key(): method get_space (line 1162) | def get_space(self): method __str__ (line 1165) | def __str__(self): class Meta (line 1168) | class Meta: class RecipeImport (line 1172) | class RecipeImport(models.Model, PermissionModelMixin): method __str__ (line 1182) | def __str__(self): method convert_to_recipe (line 1185) | def convert_to_recipe(self, user): class Meta (line 1198) | class Meta: class RecipeBook (line 1202) | class RecipeBook(ExportModelOperationsMixin('book'), models.Model, Permi... method __str__ (line 1213) | def __str__(self): class Meta (line 1216) | class Meta(): class RecipeBookEntry (line 1221) | class RecipeBookEntry(ExportModelOperationsMixin('book_entry'), models.M... method get_space_key (line 1228) | def get_space_key(): method __str__ (line 1231) | def __str__(self): method get_owner (line 1234) | def get_owner(self): class Meta (line 1240) | class Meta: class MealType (line 1246) | class MealType(models.Model, PermissionModelMixin): method __str__ (line 1257) | def __str__(self): class Meta (line 1260) | class Meta: class MealPlan (line 1267) | class MealPlan(ExportModelOperationsMixin('meal_plan'), models.Model, Pe... method get_label (line 1281) | def get_label(self): method get_meal_name (line 1286) | def get_meal_name(self): method __str__ (line 1289) | def __str__(self): class Meta (line 1292) | class Meta: class ShoppingListRecipe (line 1296) | class ShoppingListRecipe(ExportModelOperationsMixin('shopping_list_recip... class Meta (line 1310) | class Meta: class ShoppingList (line 1314) | class ShoppingList(ExportModelOperationsMixin('shopping_list'), models.M... class Meta (line 1325) | class Meta: class ShoppingListEntry (line 1329) | class ShoppingListEntry(ExportModelOperationsMixin('shopping_list_entry'... method __str__ (line 1348) | def __str__(self): method get_owner (line 1351) | def get_owner(self): class Meta (line 1357) | class Meta: class InventoryLocation (line 1361) | class InventoryLocation(models.Model, PermissionModelMixin): class InventoryEntry (line 1374) | class InventoryEntry(models.Model, PermissionModelMixin): class Meta (line 1394) | class Meta: class InventoryLog (line 1401) | class InventoryLog(models.Model, PermissionModelMixin): class Meta (line 1425) | class Meta: class ShareLink (line 1429) | class ShareLink(ExportModelOperationsMixin('share_link'), models.Model, ... method __str__ (line 1440) | def __str__(self): class Meta (line 1443) | class Meta: function default_valid_until (line 1447) | def default_valid_until(): class InviteLink (line 1451) | class InviteLink(ExportModelOperationsMixin('invite_link'), models.Model... method __str__ (line 1466) | def __str__(self): class Meta (line 1469) | class Meta: class TelegramBot (line 1473) | class TelegramBot(models.Model, PermissionModelMixin): method __str__ (line 1483) | def __str__(self): class Meta (line 1486) | class Meta: class CookLog (line 1490) | class CookLog(ExportModelOperationsMixin('cook_log'), models.Model, Perm... method __str__ (line 1503) | def __str__(self): class Meta (line 1506) | class Meta: class ViewLog (line 1518) | class ViewLog(ExportModelOperationsMixin('view_log'), models.Model, Perm... method __str__ (line 1526) | def __str__(self): class Meta (line 1529) | class Meta: class ImportLog (line 1539) | class ImportLog(models.Model, PermissionModelMixin): method __str__ (line 1554) | def __str__(self): class Meta (line 1557) | class Meta: class ExportLog (line 1561) | class ExportLog(models.Model, PermissionModelMixin): method __str__ (line 1577) | def __str__(self): class Meta (line 1580) | class Meta: class BookmarkletImport (line 1584) | class BookmarkletImport(ExportModelOperationsMixin('bookmarklet_import')... class Meta (line 1593) | class Meta: class SearchFields (line 1599) | class SearchFields(models.Model, PermissionModelMixin): method __str__ (line 1603) | def __str__(self): method get_name (line 1607) | def get_name(self): class SearchPreference (line 1611) | class SearchPreference(models.Model, PermissionModelMixin): class UserFile (line 1637) | class UserFile(ExportModelOperationsMixin('user_files'), models.Model, P... method is_image (line 1647) | def is_image(self): method save (line 1654) | def save(self, *args, **kwargs): method __str__ (line 1660) | def __str__(self): class Meta (line 1663) | class Meta: class Automation (line 1667) | class Automation(ExportModelOperationsMixin('automations'), models.Model... class Meta (line 1712) | class Meta: class CustomFilter (line 1716) | class CustomFilter(models.Model, PermissionModelMixin): method __str__ (line 1738) | def __str__(self): class Meta (line 1741) | class Meta: FILE: cookbook/provider/dropbox.py class Dropbox (line 11) | class Dropbox(Provider): method import_all (line 14) | def import_all(monitor): method create_share_link (line 63) | def create_share_link(recipe): method get_share_link (line 80) | def get_share_link(recipe): method get_file (line 102) | def get_file(recipe): method rename_file (line 114) | def rename_file(recipe, new_name): method delete_file (line 136) | def delete_file(recipe): FILE: cookbook/provider/local.py class Local (line 12) | class Local(Provider): method import_all (line 15) | def import_all(monitor): method get_file (line 49) | def get_file(recipe): method is_path_allowed (line 58) | def is_path_allowed(path): method rename_file (line 67) | def rename_file(recipe, new_name): method delete_file (line 75) | def delete_file(recipe): FILE: cookbook/provider/nextcloud.py class Nextcloud (line 15) | class Nextcloud(Provider): method get_client (line 18) | def get_client(storage): method import_all (line 30) | def import_all(monitor): method create_share_link (line 70) | def create_share_link(recipe): method get_share_link (line 87) | def get_share_link(recipe): method get_file (line 111) | def get_file(recipe): method rename_file (line 127) | def rename_file(recipe, new_name): method delete_file (line 142) | def delete_file(recipe): FILE: cookbook/provider/provider.py class Provider (line 1) | class Provider: method import_all (line 3) | def import_all(monitor): method create_share_link (line 7) | def create_share_link(recipe): method get_share_link (line 11) | def get_share_link(recipe): method get_file (line 15) | def get_file(recipe): method rename_file (line 19) | def rename_file(recipe, new_name): method delete_file (line 23) | def delete_file(recipe): FILE: cookbook/serializer.py class WritableNestedModelSerializer (line 48) | class WritableNestedModelSerializer(WNMS): method to_internal_value (line 51) | def to_internal_value(self, data): class ExtendedRecipeMixin (line 75) | class ExtendedRecipeMixin(serializers.ModelSerializer): method get_fields (line 85) | def get_fields(self, *args, **kwargs): method get_image (line 104) | def get_image(self, obj): class OpenDataModelMixin (line 114) | class OpenDataModelMixin(serializers.ModelSerializer): method create (line 116) | def create(self, validated_data): method update (line 121) | def update(self, instance, validated_data): class CustomDecimalField (line 128) | class CustomDecimalField(serializers.Field): method to_representation (line 134) | def to_representation(self, value): method to_internal_value (line 139) | def to_internal_value(self, data): class CustomOnHandField (line 152) | class CustomOnHandField(serializers.Field): method get_attribute (line 153) | def get_attribute(self, instance): method to_representation (line 156) | def to_representation(self, obj): method to_internal_value (line 174) | def to_internal_value(self, data): class SpaceFilterSerializer (line 178) | class SpaceFilterSerializer(serializers.ListSerializer): method to_representation (line 179) | def to_representation(self, data): class UserSerializer (line 226) | class UserSerializer(WritableNestedModelSerializer): method get_user_label (line 230) | def get_user_label(self, obj): class Meta (line 233) | class Meta: class GroupSerializer (line 240) | class GroupSerializer(UniqueFieldsMixin, WritableNestedModelSerializer): method create (line 241) | def create(self, validated_data): method update (line 244) | def update(self, instance, validated_data): class Meta (line 247) | class Meta: class FoodInheritFieldSerializer (line 253) | class FoodInheritFieldSerializer(UniqueFieldsMixin, WritableNestedModelS... method create (line 257) | def create(self, validated_data): method update (line 260) | def update(self, instance, validated_data): class Meta (line 263) | class Meta: class UserFileSerializer (line 269) | class UserFileSerializer(serializers.ModelSerializer): method get_download_link (line 276) | def get_download_link(self, obj): method get_preview_link (line 280) | def get_preview_link(self, obj): method check_file_limit (line 288) | def check_file_limit(self, validated_data): method check_file_type (line 304) | def check_file_type(self, validated_data): method create (line 312) | def create(self, validated_data): method update (line 319) | def update(self, instance, validated_data): class Meta (line 324) | class Meta: class UserFileViewSerializer (line 331) | class UserFileViewSerializer(serializers.ModelSerializer): method get_download_link (line 337) | def get_download_link(self, obj): method get_preview_link (line 341) | def get_preview_link(self, obj): method create (line 349) | def create(self, validated_data): method update (line 352) | def update(self, instance, validated_data): class Meta (line 355) | class Meta: class AiProviderSerializer (line 361) | class AiProviderSerializer(serializers.ModelSerializer): method create (line 364) | def create(self, validated_data): method update (line 369) | def update(self, instance, validated_data): method handle_global_space_logic (line 373) | def handle_global_space_logic(self, validated_data, instance=None): class Meta (line 393) | class Meta: class AiLogSerializer (line 399) | class AiLogSerializer(serializers.ModelSerializer): class Meta (line 402) | class Meta: class SpaceSerializer (line 409) | class SpaceSerializer(WritableNestedModelSerializer): method get_user_count (line 429) | def get_user_count(self, obj): method get_recipe_count (line 433) | def get_recipe_count(self, obj): method get_ai_monthly_credits_used (line 437) | def get_ai_monthly_credits_used(self, obj): method get_file_size_mb (line 441) | def get_file_size_mb(self, obj): method create (line 447) | def create(self, validated_data): method update (line 458) | def update(self, instance, validated_data): method filter_superuser_parameters (line 467) | def filter_superuser_parameters(self, validated_data): class Meta (line 479) | class Meta: class HouseholdSerializer (line 492) | class HouseholdSerializer(WritableNestedModelSerializer): method create (line 494) | def create(self, validated_data): class Meta (line 498) | class Meta: class UserSpaceSerializer (line 504) | class UserSpaceSerializer(WritableNestedModelSerializer): method create (line 509) | def create(self, validated_data): class Meta (line 512) | class Meta: class SpacedModelSerializer (line 518) | class SpacedModelSerializer(serializers.ModelSerializer): method create (line 519) | def create(self, validated_data): class ShoppingListSerializer (line 524) | class ShoppingListSerializer(SpacedModelSerializer, WritableNestedModelS... method create (line 526) | def create(self, validated_data): class Meta (line 532) | class Meta: class MealTypeSerializer (line 538) | class MealTypeSerializer(SpacedModelSerializer, WritableNestedModelSeria... method create (line 540) | def create(self, validated_data): class Meta (line 547) | class Meta: class UserPreferenceSerializer (line 554) | class UserPreferenceSerializer(WritableNestedModelSerializer): method get_food_inherit_defaults (line 564) | def get_food_inherit_defaults(self, obj): method get_food_children_exist (line 568) | def get_food_children_exist(self, obj): method update (line 572) | def update(self, instance, validated_data): method create (line 576) | def create(self, validated_data): class Meta (line 579) | class Meta: class SearchFieldsSerializer (line 595) | class SearchFieldsSerializer(UniqueFieldsMixin, WritableNestedModelSeria... method create (line 599) | def create(self, validated_data): method update (line 602) | def update(self, instance, validated_data): class Meta (line 605) | class Meta: class SearchPreferenceSerializer (line 611) | class SearchPreferenceSerializer(WritableNestedModelSerializer): method create (line 620) | def create(self, validated_data): class Meta (line 623) | class Meta: class ConnectorConfigSerializer (line 629) | class ConnectorConfigSerializer(SpacedModelSerializer): method create (line 631) | def create(self, validated_data): class Meta (line 635) | class Meta: class StorageSerializer (line 650) | class StorageSerializer(WritableNestedModelSerializer, SpacedModelSerial... method create (line 652) | def create(self, validated_data): class Meta (line 656) | class Meta: class RecipeImportSerializer (line 671) | class RecipeImportSerializer(WritableNestedModelSerializer, SpacedModelS... class Meta (line 674) | class Meta: class SyncSerializer (line 679) | class SyncSerializer(WritableNestedModelSerializer, SpacedModelSerializer): class Meta (line 682) | class Meta: class SyncLogSerializer (line 690) | class SyncLogSerializer(SpacedModelSerializer): class Meta (line 693) | class Meta: class KeywordLabelSerializer (line 698) | class KeywordLabelSerializer(serializers.ModelSerializer): method get_label (line 702) | def get_label(self, obj): class Meta (line 705) | class Meta: class KeywordSerializer (line 712) | class KeywordSerializer(UniqueFieldsMixin, ExtendedRecipeMixin): method get_label (line 719) | def get_label(self, obj): method create (line 722) | def create(self, validated_data): class Meta (line 730) | class Meta: class UnitSerializer (line 738) | class UnitSerializer(UniqueFieldsMixin, ExtendedRecipeMixin, OpenDataMod... method create (line 741) | def create(self, validated_data): method update (line 758) | def update(self, instance, validated_data): class Meta (line 764) | class Meta: class SupermarketCategorySerializer (line 770) | class SupermarketCategorySerializer(UniqueFieldsMixin, WritableNestedMod... method create (line 772) | def create(self, validated_data): method update (line 779) | def update(self, instance, validated_data): class Meta (line 782) | class Meta: class SupermarketCategoryRelationSerializer (line 787) | class SupermarketCategoryRelationSerializer(WritableNestedModelSerializer): class Meta (line 790) | class Meta: class SupermarketSerializer (line 795) | class SupermarketSerializer(UniqueFieldsMixin, SpacedModelSerializer, Wr... method create (line 799) | def create(self, validated_data): class Meta (line 806) | class Meta: class PropertyTypeSerializer (line 811) | class PropertyTypeSerializer(OpenDataModelMixin, WritableNestedModelSeri... method create (line 815) | def create(self, validated_data): class Meta (line 822) | class Meta: class PropertySerializer (line 827) | class PropertySerializer(UniqueFieldsMixin, WritableNestedModelSerializer): method create (line 831) | def create(self, validated_data): class Meta (line 835) | class Meta: class RecipeSimpleSerializer (line 840) | class RecipeSimpleSerializer(WritableNestedModelSerializer): method get_url (line 844) | def get_url(self, obj): method create (line 847) | def create(self, validated_data): method update (line 851) | def update(self, instance, validated_data): class Meta (line 855) | class Meta: class RecipeFlatSerializer (line 860) | class RecipeFlatSerializer(WritableNestedModelSerializer): method create (line 862) | def create(self, validated_data): method update (line 866) | def update(self, instance, validated_data): class Meta (line 870) | class Meta: class FoodSimpleSerializer (line 876) | class FoodSimpleSerializer(serializers.ModelSerializer): class Meta (line 877) | class Meta: class FoodSerializer (line 882) | class FoodSerializer(UniqueFieldsMixin, WritableNestedModelSerializer, E... method get_substitute_onhand (line 901) | def get_substitute_onhand(self, obj): method create (line 927) | def create(self, validated_data): method update (line 976) | def update(self, instance, validated_data): class Meta (line 1003) | class Meta: class IngredientSimpleSerializer (line 1013) | class IngredientSimpleSerializer(WritableNestedModelSerializer): method create (line 1019) | def create(self, validated_data): method update (line 1023) | def update(self, instance, validated_data): class Meta (line 1027) | class Meta: class IngredientSerializer (line 1036) | class IngredientSerializer(IngredientSimpleSerializer): method get_used_in_recipes (line 1042) | def get_used_in_recipes(self, obj): method get_conversions (line 1050) | def get_conversions(self, obj): class Meta (line 1061) | class Meta: class StepSerializer (line 1071) | class StepSerializer(WritableNestedModelSerializer, ExtendedRecipeMixin): method create (line 1078) | def create(self, validated_data): method get_instructions_markdown (line 1083) | def get_instructions_markdown(self, obj): method get_step_recipes (line 1087) | def get_step_recipes(self, obj): method get_step_recipe_data (line 1092) | def get_step_recipe_data(self, obj): class Meta (line 1098) | class Meta: class StepRecipeSerializer (line 1106) | class StepRecipeSerializer(WritableNestedModelSerializer): class Meta (line 1109) | class Meta: class UnitConversionSerializer (line 1114) | class UnitConversionSerializer(WritableNestedModelSerializer, OpenDataMo... method get_conversion_name (line 1123) | def get_conversion_name(self, obj): method create (line 1129) | def create(self, validated_data): class Meta (line 1142) | class Meta: class NutritionInformationSerializer (line 1147) | class NutritionInformationSerializer(serializers.ModelSerializer): method create (line 1153) | def create(self, validated_data): class Meta (line 1157) | class Meta: class RecipeBaseSerializer (line 1162) | class RecipeBaseSerializer(WritableNestedModelSerializer): method is_recipe_new (line 1165) | def is_recipe_new(self, obj): class CommentSerializer (line 1172) | class CommentSerializer(serializers.ModelSerializer): class Meta (line 1173) | class Meta: class RecipeOverviewSerializer (line 1179) | class RecipeOverviewSerializer(RecipeBaseSerializer): method create (line 1187) | def create(self, validated_data): method update (line 1190) | def update(self, instance, validated_data): class Meta (line 1193) | class Meta: class RecipeSerializer (line 1210) | class RecipeSerializer(RecipeBaseSerializer): method get_food_properties (line 1222) | def get_food_properties(self, obj): class Meta (line 1233) | class Meta: method validate (line 1242) | def validate(self, data): method create (line 1248) | def create(self, validated_data): class RecipeImageSerializer (line 1254) | class RecipeImageSerializer(WritableNestedModelSerializer): method create (line 1258) | def create(self, validated_data): method update (line 1263) | def update(self, instance, validated_data): class Meta (line 1268) | class Meta: class RecipeBatchUpdateSerializer (line 1273) | class RecipeBatchUpdateSerializer(serializers.Serializer): class FoodBatchUpdateSerializer (line 1295) | class FoodBatchUpdateSerializer(serializers.Serializer): class CustomFilterSerializer (line 1329) | class CustomFilterSerializer(SpacedModelSerializer, WritableNestedModelS... method create (line 1332) | def create(self, validated_data): class Meta (line 1336) | class Meta: class RecipeBookSerializer (line 1342) | class RecipeBookSerializer(SpacedModelSerializer, WritableNestedModelSer... method create (line 1347) | def create(self, validated_data): class Meta (line 1351) | class Meta: class RecipeBookEntrySerializer (line 1357) | class RecipeBookEntrySerializer(serializers.ModelSerializer): method get_book_content (line 1362) | def get_book_content(self, obj): method get_recipe_content (line 1366) | def get_recipe_content(self, obj): method create (line 1369) | def create(self, validated_data): class Meta (line 1377) | class Meta: class MealPlanSerializer (line 1382) | class MealPlanSerializer(SpacedModelSerializer, WritableNestedModelSeria... method get_note_markdown (line 1396) | def get_note_markdown(self, obj): method in_shopping (line 1400) | def in_shopping(self, obj): method _apply_default_time (line 1404) | def _apply_default_time(dt, meal_type_obj): method create (line 1418) | def create(self, validated_data): method update (line 1449) | def update(self, obj, validated_data): class Meta (line 1456) | class Meta: class AutoMealPlanSerializer (line 1466) | class AutoMealPlanSerializer(serializers.Serializer): class ShoppingListRecipeSerializer (line 1476) | class ShoppingListRecipeSerializer(serializers.ModelSerializer): method create (line 1482) | def create(self, validated_data): method update (line 1487) | def update(self, instance, validated_data): class Meta (line 1493) | class Meta: class FoodShoppingSerializer (line 1499) | class FoodShoppingSerializer(serializers.ModelSerializer): method create (line 1504) | def create(self, validated_data): class Meta (line 1531) | class Meta: class ShoppingListEntrySerializer (line 1536) | class ShoppingListEntrySerializer(WritableNestedModelSerializer): method get_fields (line 1547) | def get_fields(self, *args, **kwargs): method run_validation (line 1556) | def run_validation(self, data): method create (line 1576) | def create(self, validated_data): method update (line 1596) | def update(self, instance, validated_data): class Meta (line 1611) | class Meta: class ShoppingListEntrySimpleCreateSerializer (line 1620) | class ShoppingListEntrySimpleCreateSerializer(serializers.Serializer): class ShoppingListEntryBulkCreateSerializer (line 1627) | class ShoppingListEntryBulkCreateSerializer(serializers.Serializer): class ShoppingListEntryBulkSerializer (line 1632) | class ShoppingListEntryBulkSerializer(serializers.Serializer): class ShoppingListEntryCheckedSerializer (line 1644) | class ShoppingListEntryCheckedSerializer(serializers.ModelSerializer): class Meta (line 1645) | class Meta: class ShareLinkSerializer (line 1650) | class ShareLinkSerializer(SpacedModelSerializer): class Meta (line 1651) | class Meta: class CookLogSerializer (line 1656) | class CookLogSerializer(serializers.ModelSerializer): method create (line 1659) | def create(self, validated_data): class Meta (line 1664) | class Meta: class ViewLogSerializer (line 1670) | class ViewLogSerializer(serializers.ModelSerializer): method create (line 1671) | def create(self, validated_data): class Meta (line 1682) | class Meta: class ImportLogSerializer (line 1688) | class ImportLogSerializer(serializers.ModelSerializer): method create (line 1691) | def create(self, validated_data): class Meta (line 1696) | class Meta: class ExportLogSerializer (line 1703) | class ExportLogSerializer(serializers.ModelSerializer): method create (line 1705) | def create(self, validated_data): class Meta (line 1710) | class Meta: class AutomationSerializer (line 1719) | class AutomationSerializer(serializers.ModelSerializer): method create (line 1721) | def create(self, validated_data): class Meta (line 1726) | class Meta: class InventoryLocationSerializer (line 1733) | class InventoryLocationSerializer(UniqueFieldsMixin, SpacedModelSerializ... method create (line 1736) | def create(self, validated_data): class Meta (line 1741) | class Meta: class InventoryEntrySerializer (line 1746) | class InventoryEntrySerializer(SpacedModelSerializer, WritableNestedMode... method get_label (line 1752) | def get_label(self, obj): method create (line 1759) | def create(self, validated_data): method update (line 1781) | def update(self, instance, validated_data): class Meta (line 1801) | class Meta: class InventoryLogSerializer (line 1810) | class InventoryLogSerializer(SpacedModelSerializer): method create (line 1815) | def create(self, validated_data): method update (line 1818) | def update(self, instance, validated_data): class Meta (line 1821) | class Meta: class InviteLinkSerializer (line 1826) | class InviteLinkSerializer(WritableNestedModelSerializer): method get_email_sent (line 1831) | def get_email_sent(self, obj): method create (line 1835) | def create(self, validated_data): class Meta (line 1873) | class Meta: class BookmarkletImportListSerializer (line 1884) | class BookmarkletImportListSerializer(serializers.ModelSerializer): method create (line 1885) | def create(self, validated_data): class Meta (line 1890) | class Meta: class BookmarkletImportSerializer (line 1896) | class BookmarkletImportSerializer(BookmarkletImportListSerializer): class Meta (line 1897) | class Meta: class AccessTokenSerializer (line 1905) | class AccessTokenSerializer(serializers.ModelSerializer): method create (line 1908) | def create(self, validated_data): method get_token (line 1914) | def get_token(self, obj): class Meta (line 1922) | class Meta: class LocalizationSerializer (line 1928) | class LocalizationSerializer(serializers.Serializer): class Meta (line 1932) | class Meta: class ServerSettingsSerializer (line 1936) | class ServerSettingsSerializer(serializers.Serializer): class Meta (line 1962) | class Meta: class FdcQueryFoodsSerializer (line 1967) | class FdcQueryFoodsSerializer(serializers.Serializer): class FdcQuerySerializer (line 1973) | class FdcQuerySerializer(serializers.Serializer): class GenericModelReferenceSerializer (line 1980) | class GenericModelReferenceSerializer(serializers.Serializer): class KeywordExportSerializer (line 1988) | class KeywordExportSerializer(KeywordSerializer): class Meta (line 1989) | class Meta: class NutritionInformationExportSerializer (line 1994) | class NutritionInformationExportSerializer(NutritionInformationSerializer): class Meta (line 1995) | class Meta: class SupermarketCategoryExportSerializer (line 2000) | class SupermarketCategoryExportSerializer(SupermarketCategorySerializer): class Meta (line 2001) | class Meta: class UnitExportSerializer (line 2006) | class UnitExportSerializer(UnitSerializer): class Meta (line 2007) | class Meta: class FoodExportSerializer (line 2012) | class FoodExportSerializer(FoodSerializer): class Meta (line 2015) | class Meta: class IngredientExportSerializer (line 2020) | class IngredientExportSerializer(WritableNestedModelSerializer): method create (line 2025) | def create(self, validated_data): class Meta (line 2029) | class Meta: class StepExportSerializer (line 2035) | class StepExportSerializer(WritableNestedModelSerializer): method create (line 2038) | def create(self, validated_data): class Meta (line 2042) | class Meta: class RecipeExportSerializer (line 2047) | class RecipeExportSerializer(WritableNestedModelSerializer): class Meta (line 2052) | class Meta: method create (line 2059) | def create(self, validated_data): class RecipeShoppingUpdateSerializer (line 2065) | class RecipeShoppingUpdateSerializer(serializers.ModelSerializer): class Meta (line 2073) | class Meta: class FoodShoppingUpdateSerializer (line 2078) | class FoodShoppingUpdateSerializer(serializers.ModelSerializer): class Meta (line 2086) | class Meta: class RecipeFromSourceSerializer (line 2093) | class RecipeFromSourceSerializer(serializers.Serializer): class SourceImportFoodSerializer (line 2099) | class SourceImportFoodSerializer(serializers.Serializer): class SourceImportUnitSerializer (line 2103) | class SourceImportUnitSerializer(serializers.Serializer): class SourceImportIngredientSerializer (line 2107) | class SourceImportIngredientSerializer(serializers.Serializer): class SourceImportStepSerializer (line 2115) | class SourceImportStepSerializer(serializers.Serializer): class SourceImportKeywordSerializer (line 2121) | class SourceImportKeywordSerializer(serializers.Serializer): class SourceImportPropertyTypeSerializer (line 2128) | class SourceImportPropertyTypeSerializer(serializers.Serializer): class SourceImportPropertySerializer (line 2133) | class SourceImportPropertySerializer(serializers.Serializer): class SourceImportRecipeSerializer (line 2138) | class SourceImportRecipeSerializer(serializers.Serializer): class SourceImportDuplicateSerializer (line 2154) | class SourceImportDuplicateSerializer(serializers.Serializer): class RecipeFromSourceResponseSerializer (line 2159) | class RecipeFromSourceResponseSerializer(serializers.Serializer): class AiImportSerializer (line 2168) | class AiImportSerializer(serializers.Serializer): class ExportRequestSerializer (line 2175) | class ExportRequestSerializer(serializers.Serializer): class ImportOpenDataSerializer (line 2182) | class ImportOpenDataSerializer(serializers.Serializer): class ImportOpenDataResponseDetailSerializer (line 2189) | class ImportOpenDataResponseDetailSerializer(serializers.Serializer): class ImportOpenDataResponseSerializer (line 2196) | class ImportOpenDataResponseSerializer(serializers.Serializer): class ImportOpenDataVersionMetaDataSerializer (line 2205) | class ImportOpenDataVersionMetaDataSerializer(serializers.Serializer): class ImportOpenDataMetaDataSerializer (line 2214) | class ImportOpenDataMetaDataSerializer(serializers.Serializer): class IngredientParserRequestSerializer (line 2238) | class IngredientParserRequestSerializer(serializers.Serializer): class IngredientParserResponseSerializer (line 2243) | class IngredientParserResponseSerializer(serializers.Serializer): FILE: cookbook/signals.py function skip_signal (line 25) | def skip_signal(signal_func): function create_user_preference (line 38) | def create_user_preference(sender, instance=None, created=False, **kwargs): function create_search_preference (line 45) | def create_search_preference(sender, instance=None, created=False, **kwa... function update_recipe_search_vector (line 55) | def update_recipe_search_vector(sender, instance=None, created=False, **... function update_step_search_vector (line 71) | def update_step_search_vector(sender, instance=None, created=False, **kw... function update_food_inheritance (line 85) | def update_food_inheritance(sender, instance=None, created=False, **kwar... function clear_unit_cache (line 125) | def clear_unit_cache(sender, instance=None, created=False, **kwargs): function clear_property_type_cache (line 133) | def clear_property_type_cache(sender, instance=None, created=False, **kw... FILE: cookbook/static/pdfjs/web/debugger.mjs function removeSelection (line 27) | function removeSelection() { function resetSelection (line 33) | function resetSelection() { function selectFont (line 39) | function selectFont(fontName, show) { function textLayerClick (line 47) | function textLayerClick(e) { method init (line 71) | init() { method cleanup (line 81) | cleanup() { method active (line 85) | get active() { method active (line 88) | set active(value) { method fontAdded (line 99) | fontAdded(fontObj, url) { method init (line 180) | init() { method cleanup (line 194) | cleanup() { method create (line 202) | create(pageIndex) { method selectStepper (line 220) | selectStepper(pageIndex, selectPanel) { method saveBreakPoints (line 232) | saveBreakPoints(pageIndex, bps) { class Stepper (line 240) | class Stepper { method #c (line 242) | #c(tag, textContent) { method #simplifyArgs (line 250) | #simplifyArgs(args) { method constructor (line 280) | constructor(panel, pageIndex, initialBreakPoints) { method init (line 291) | init(operatorList) { method updateOperatorList (line 310) | updateOperatorList(operatorList) { method getNextBreakPoint (line 400) | getNextBreakPoint() { method breakIt (line 410) | breakIt(idx, callback) { method goTo (line 434) | goTo(idx) { function clear (line 449) | function clear(node) { function getStatIndex (line 452) | function getStatIndex(pageNumber) { method init (line 466) | init() {} method add (line 470) | add(pageNumber, stat) { method cleanup (line 494) | cleanup() { class PDFBug (line 502) | class PDFBug { method enable (line 509) | static enable(ids) { method init (line 529) | static init(container, ids) { method loadCSS (line 580) | static loadCSS() { method cleanup (line 590) | static cleanup() { method selectPanel (line 598) | static selectPanel(index) { FILE: cookbook/static/pdfjs/web/pdf.mjs constant IDENTITY_MATRIX (line 103) | const IDENTITY_MATRIX = [1, 0, 0, 1, 0, 0]; constant FONT_IDENTITY_MATRIX (line 104) | const FONT_IDENTITY_MATRIX = [0.001, 0, 0, 0.001, 0, 0]; constant LINE_FACTOR (line 105) | const LINE_FACTOR = 1.35; constant LINE_DESCENT_FACTOR (line 106) | const LINE_DESCENT_FACTOR = 0.35; constant BASELINE_FACTOR (line 107) | const BASELINE_FACTOR = LINE_DESCENT_FACTOR / LINE_FACTOR; constant OPS (line 282) | const OPS = { function setVerbosityLevel (line 385) | function setVerbosityLevel(level) { function getVerbosityLevel (line 390) | function getVerbosityLevel() { function info (line 393) | function info(msg) { function warn (line 398) | function warn(msg) { function unreachable (line 403) | function unreachable(msg) { function assert (line 406) | function assert(cond, msg) { function _isValidProtocol (line 411) | function _isValidProtocol(url) { function createValidAbsoluteUrl (line 423) | function createValidAbsoluteUrl(url, baseUrl = null, options = null) { function shadow (line 443) | function shadow(obj, prop, value, nonSerializable = false) { function BaseException (line 453) | function BaseException(message, name) { class PasswordException (line 461) | class PasswordException extends BaseException { method constructor (line 462) | constructor(msg, code) { class UnknownErrorException (line 467) | class UnknownErrorException extends BaseException { method constructor (line 468) | constructor(msg, details) { class InvalidPDFException (line 473) | class InvalidPDFException extends BaseException { method constructor (line 474) | constructor(msg) { class ResponseException (line 478) | class ResponseException extends BaseException { method constructor (line 479) | constructor(msg, status, missing) { class FormatError (line 485) | class FormatError extends BaseException { method constructor (line 486) | constructor(msg) { class AbortException (line 490) | class AbortException extends BaseException { method constructor (line 491) | constructor(msg) { function bytesToString (line 495) | function bytesToString(bytes) { function stringToBytes (line 512) | function stringToBytes(str) { function string32 (line 523) | function string32(value) { function objectSize (line 526) | function objectSize(obj) { function objectFromMap (line 529) | function objectFromMap(map) { function isLittleEndian (line 536) | function isLittleEndian() { function isEvalSupported (line 542) | function isEvalSupported() { class util_FeatureTest (line 550) | class util_FeatureTest { method isLittleEndian (line 551) | static get isLittleEndian() { method isEvalSupported (line 554) | static get isEvalSupported() { method isOffscreenCanvasSupported (line 557) | static get isOffscreenCanvasSupported() { method isImageDecoderSupported (line 560) | static get isImageDecoderSupported() { method platform (line 563) | static get platform() { method isCSSRoundSupported (line 585) | static get isCSSRoundSupported() { class Util (line 590) | class Util { method makeHexColor (line 591) | static makeHexColor(r, g, b) { method transform (line 594) | static transform(m1, m2) { method applyTransform (line 597) | static applyTransform(p, m) { method applyInverseTransform (line 602) | static applyInverseTransform(p, m) { method getAxialAlignedBoundingBox (line 608) | static getAxialAlignedBoundingBox(r, m) { method inverseTransform (line 615) | static inverseTransform(m) { method singularValueDecompose2dScale (line 619) | static singularValueDecompose2dScale(m) { method normalizeRect (line 631) | static normalizeRect(rect) { method intersect (line 643) | static intersect(rect1, rect2) { method pointBoundingBox (line 656) | static pointBoundingBox(x, y, minMax) { method rectBoundingBox (line 662) | static rectBoundingBox(x0, y0, x1, y1, minMax) { method #getExtremumOnCurve (line 668) | static #getExtremumOnCurve(x0, x1, x2, x3, y0, y1, y2, y3, t, minMax) { method #getExtremum (line 682) | static #getExtremum(x0, x1, x2, x3, y0, y1, y2, y3, a, b, c, minMax) { method bezierBoundingBox (line 698) | static bezierBoundingBox(x0, y0, x1, y1, x2, y2, x3, y3, minMax) { function stringToPDFString (line 708) | function stringToPDFString(str) { function stringToUTF8String (line 752) | function stringToUTF8String(str) { function utf8StringToString (line 755) | function utf8StringToString(str) { function isArrayEqual (line 758) | function isArrayEqual(arr1, arr2) { function getModificationDate (line 769) | function getModificationDate(date = new Date()) { function normalizeUnicode (line 775) | function normalizeUnicode(str) { function getUuid (line 782) | function getUuid() { function _isValidExplicitDest (line 791) | function _isValidExplicitDest(validRef, validName, dest) { function MathClamp (line 838) | function MathClamp(v, min, max) { function toHexUtil (line 841) | function toHexUtil(arr) { function toBase64Util (line 847) | function toBase64Util(arr) { function fromBase64Util (line 853) | function fromBase64Util(str) { constant SVG_NS (line 874) | const SVG_NS = "http://www.w3.org/2000/svg"; class PixelsPerInch (line 875) | class PixelsPerInch { function fetchData (line 880) | async function fetchData(url, type = "text") { class PageViewport (line 920) | class PageViewport { method constructor (line 921) | constructor({ method rawDims (line 993) | get rawDims() { method clone (line 1002) | clone({ method convertToViewportPoint (line 1019) | convertToViewportPoint(x, y) { method convertToViewportRectangle (line 1022) | convertToViewportRectangle(rect) { method convertToPdfPoint (line 1027) | convertToPdfPoint(x, y) { class RenderingCancelledException (line 1031) | class RenderingCancelledException extends BaseException { method constructor (line 1032) | constructor(msg, extraDelay = 0) { function isDataScheme (line 1037) | function isDataScheme(url) { function isPdfFile (line 1045) | function isPdfFile(filename) { function getFilenameFromUrl (line 1048) | function getFilenameFromUrl(url) { function getPdfFilenameFromUrl (line 1052) | function getPdfFilenameFromUrl(url, defaultFilename = "document.pdf") { class StatTimer (line 1074) | class StatTimer { method time (line 1077) | time(name) { method timeEnd (line 1083) | timeEnd(name) { method toString (line 1094) | toString() { function isValidFetchUrl (line 1112) | function isValidFetchUrl(url, baseUrl) { function noContextMenu (line 1116) | function noContextMenu(e) { function stopEvent (line 1119) | function stopEvent(e) { function deprecated (line 1123) | function deprecated(details) { class PDFDateString (line 1126) | class PDFDateString { method toDateObject (line 1128) | static toDateObject(input) { function getXfaPageViewport (line 1163) | function getXfaPageViewport(xfaPage, { function getRGB (line 1179) | function getRGB(color) { function getColorValues (line 1193) | function getColorValues(colors) { function getCurrentTransform (line 1204) | function getCurrentTransform(ctx) { function getCurrentTransformInverse (line 1215) | function getCurrentTransformInverse(ctx) { function setLayerDimensions (line 1226) | function setLayerDimensions(div, viewport, mustFlip = false, mustRotate ... class OutputScale (line 1252) | class OutputScale { method constructor (line 1253) | constructor() { method scaled (line 1260) | get scaled() { method symmetric (line 1263) | get symmetric() { method limitCanvas (line 1266) | limitCanvas(width, height, maxPixels, maxDim) { method pixelRatio (line 1285) | static get pixelRatio() { class EditorToolbar (line 1293) | class EditorToolbar { method constructor (line 1301) | constructor(editor) { method render (line 1311) | render() { method div (line 1337) | get div() { method #pointerDown (line 1340) | static #pointerDown(e) { method #focusIn (line 1343) | #focusIn(e) { method #focusOut (line 1347) | #focusOut(e) { method #addListenersToElement (line 1351) | #addListenersToElement(element) { method hide (line 1365) | hide() { method show (line 1369) | show() { method #addDeleteButton (line 1373) | #addDeleteButton() { method #divider (line 1390) | get #divider() { method addAltText (line 1395) | async addAltText(altText) { method addColorPicker (line 1401) | addColorPicker(colorPicker) { method addEditSignatureButton (line 1407) | async addEditSignatureButton(signatureManager) { method updateEditSignatureButton (line 1412) | updateEditSignatureButton(description) { method remove (line 1417) | remove() { class HighlightToolbar (line 1423) | class HighlightToolbar { method constructor (line 1427) | constructor(uiManager) { method #render (line 1430) | #render() { method #getLastPoint (line 1443) | #getLastPoint(boxes, isLTR) { method show (line 1467) | show(parent, boxes, isLTR) { method hide (line 1476) | hide() { method #addHighlightButton (line 1479) | #addHighlightButton() { function bindEvents (line 1505) | function bindEvents(obj, element, names) { class IdManager (line 1510) | class IdManager { method id (line 1512) | get id() { class ImageManager (line 1516) | class ImageManager { method _isSVGFittingCanvas (line 1520) | static get _isSVGFittingCanvas() { method #get (line 1534) | async #get(key, rawData) { method getFromFile (line 1592) | async getFromFile(file) { method getFromUrl (line 1601) | async getFromUrl(url) { method getFromBlob (line 1604) | async getFromBlob(id, blobPromise) { method getFromId (line 1608) | async getFromId(id) { method getFromCanvas (line 1630) | getFromCanvas(id, canvas) { method getSvgUrl (line 1650) | getSvgUrl(id) { method deleteId (line 1657) | deleteId(id) { method isValidId (line 1679) | isValidId(id) { class CommandManager (line 1683) | class CommandManager { method constructor (line 1688) | constructor(maxSize = 128) { method add (line 1691) | add({ method undo (line 1738) | undo() { method redo (line 1752) | redo() { method hasSomethingToUndo (line 1765) | hasSomethingToUndo() { method hasSomethingToRedo (line 1768) | hasSomethingToRedo() { method cleanType (line 1771) | cleanType(type) { method destroy (line 1785) | destroy() { class KeyboardManager (line 1789) | class KeyboardManager { method constructor (line 1790) | constructor(callbacks) { method #serialize (line 1816) | #serialize(event) { method exec (line 1834) | exec(self, event) { class ColorManager (line 1859) | class ColorManager { method _colors (line 1861) | get _colors() { method convert (line 1866) | convert(color) { method getHexCode (line 1878) | getHexCode(name) { class AnnotationEditorUIManager (line 1886) | class AnnotationEditorUIManager { method _keyboardManager (line 1941) | static get _keyboardManager() { method constructor (line 1999) | constructor(container, viewer, altTextManager, signatureManager, event... method destroy (line 2043) | destroy() { method combinedSignal (line 2075) | combinedSignal(ac) { method mlManager (line 2078) | get mlManager() { method useNewAltTextFlow (line 2081) | get useNewAltTextFlow() { method useNewAltTextWhenAddingImage (line 2084) | get useNewAltTextWhenAddingImage() { method hcmFilter (line 2087) | get hcmFilter() { method direction (line 2090) | get direction() { method highlightColors (line 2093) | get highlightColors() { method highlightColorNames (line 2096) | get highlightColorNames() { method setCurrentDrawingSession (line 2099) | setCurrentDrawingSession(layer) { method setMainHighlightColorPicker (line 2108) | setMainHighlightColorPicker(colorPicker) { method editAltText (line 2111) | editAltText(editor, firstTime = false) { method getSignature (line 2114) | getSignature(editor) { method signatureManager (line 2120) | get signatureManager() { method switchToMode (line 2123) | switchToMode(mode, callback) { method setPreference (line 2133) | setPreference(name, value) { method onSetPreference (line 2140) | onSetPreference({ method onPageChanging (line 2150) | onPageChanging({ method focusMainContainer (line 2155) | focusMainContainer() { method findParent (line 2158) | findParent(x, y) { method disableUserSelect (line 2172) | disableUserSelect(value = false) { method addShouldRescale (line 2175) | addShouldRescale(editor) { method removeShouldRescale (line 2178) | removeShouldRescale(editor) { method onScaleChanging (line 2181) | onScaleChanging({ method onRotationChanging (line 2191) | onRotationChanging({ method #getAnchorElementForSelection (line 2197) | #getAnchorElementForSelection({ method #getLayerForTextLayer (line 2202) | #getLayerForTextLayer(textLayer) { method highlightSelection (line 2216) | highlightSelection(methodOfCreation = "") { method #displayHighlightToolbar (line 2260) | #displayHighlightToolbar() { method addToAnnotationStorage (line 2274) | addToAnnotationStorage(editor) { method #selectionChange (line 2279) | #selectionChange() { method #onSelectEnd (line 2344) | #onSelectEnd(methodOfCreation = "") { method #addSelectionListener (line 2351) | #addSelectionListener() { method #addFocusManager (line 2356) | #addFocusManager() { method #removeFocusManager (line 2369) | #removeFocusManager() { method blur (line 2373) | blur() { method focus (line 2393) | focus() { method #addKeyboardManager (line 2407) | #addKeyboardManager() { method #removeKeyboardManager (line 2420) | #removeKeyboardManager() { method #addCopyPasteListeners (line 2424) | #addCopyPasteListeners() { method #removeCopyPasteListeners (line 2440) | #removeCopyPasteListeners() { method #addDragAndDropListeners (line 2444) | #addDragAndDropListeners() { method addEditListeners (line 2453) | addEditListeners() { method removeEditListeners (line 2457) | removeEditListeners() { method dragOver (line 2461) | dragOver(event) { method drop (line 2474) | drop(event) { method copy (line 2485) | copy(event) { method cut (line 2503) | cut(event) { method paste (line 2507) | async paste(event) { method keydown (line 2564) | keydown(event) { method keyup (line 2572) | keyup(event) { method onEditingAction (line 2581) | onEditingAction({ method #dispatchUpdateStates (line 2596) | #dispatchUpdateStates(details) { method #dispatchUpdateUI (line 2608) | #dispatchUpdateUI(details) { method setEditingState (line 2614) | setEditingState(isEditing) { method registerEditorTypes (line 2634) | registerEditorTypes(types) { method getId (line 2643) | getId() { method currentLayer (line 2646) | get currentLayer() { method getLayer (line 2649) | getLayer(pageIndex) { method currentPageIndex (line 2652) | get currentPageIndex() { method addLayer (line 2655) | addLayer(layer) { method removeLayer (line 2663) | removeLayer(layer) { method updateMode (line 2666) | async updateMode(mode, editId = null, isFromKeyboard = false) { method addNewEditorFromKeyboard (line 2711) | addNewEditorFromKeyboard() { method updateToolbar (line 2716) | updateToolbar(mode) { method updateParams (line 2725) | updateParams(type, value) { method showAllEditors (line 2758) | showAllEditors(type, visible, updateButton = false) { method enableWaiting (line 2769) | enableWaiting(mustWait = false) { method #enableAll (line 2783) | async #enableAll() { method #disableAll (line 2796) | #disableAll() { method getEditors (line 2808) | getEditors(pageIndex) { method getEditor (line 2817) | getEditor(id) { method addEditor (line 2820) | addEditor(editor) { method removeEditor (line 2823) | removeEditor(editor) { method addDeletedAnnotationElement (line 2842) | addDeletedAnnotationElement(editor) { method isDeletedAnnotationElement (line 2847) | isDeletedAnnotationElement(annotationElementId) { method removeDeletedAnnotationElement (line 2850) | removeDeletedAnnotationElement(editor) { method #addEditorToLayer (line 2855) | #addEditorToLayer(editor) { method setActiveEditor (line 2864) | setActiveEditor(editor) { method #lastSelectedEditor (line 2873) | get #lastSelectedEditor() { method updateUI (line 2878) | updateUI(editor) { method updateUIForDefaultProperties (line 2883) | updateUIForDefaultProperties(editorType) { method toggleSelected (line 2886) | toggleSelected(editor) { method setSelected (line 2902) | setSelected(editor) { method isSelected (line 2917) | isSelected(editor) { method firstSelectedEditor (line 2920) | get firstSelectedEditor() { method unselect (line 2923) | unselect(editor) { method hasSelection (line 2930) | get hasSelection() { method isEnterHandled (line 2933) | get isEnterHandled() { method undo (line 2936) | undo() { method redo (line 2945) | redo() { method addCommands (line 2953) | addCommands(params) { method cleanUndoStack (line 2961) | cleanUndoStack(type) { method #isEmpty (line 2964) | #isEmpty() { method delete (line 2975) | delete() { method commitOrRemove (line 2999) | commitOrRemove() { method hasSomethingToControl (line 3002) | hasSomethingToControl() { method #selectEditors (line 3005) | #selectEditors(editors) { method selectAll (line 3021) | selectAll() { method unselectAll (line 3027) | unselectAll() { method translateSelectedEditors (line 3048) | translateSelectedEditors(x, y, noCommit = false) { method setUpDragSession (line 3091) | setUpDragSession() { method endDragSession (line 3108) | endDragSession() { method dragSelectedEditors (line 3164) | dragSelectedEditors(tx, ty) { method rebuild (line 3172) | rebuild(editor) { method isEditorHandlingKeyboard (line 3187) | get isEditorHandlingKeyboard() { method isActive (line 3190) | isActive(editor) { method getActive (line 3193) | getActive() { method getMode (line 3196) | getMode() { method imageManager (line 3199) | get imageManager() { method getSelectionBoxes (line 3202) | getSelectionBoxes(textLayer) { method addChangedExistingAnnotation (line 3273) | addChangedExistingAnnotation({ method removeChangedExistingAnnotation (line 3279) | removeChangedExistingAnnotation({ method renderAnnotationElement (line 3284) | renderAnnotationElement(annotation) { method setMissingCanvas (line 3298) | setMissingCanvas(annotationId, annotationElementId, canvas) { method addMissingCanvas (line 3306) | addMissingCanvas(annotationId, editor) { class AltText (line 3313) | class AltText { method constructor (line 3328) | constructor(editor) { method initialize (line 3340) | static initialize(l10n) { method render (line 3343) | async render() { method #label (line 3391) | get #label() { method finish (line 3394) | finish() { method isEmpty (line 3403) | isEmpty() { method hasData (line 3409) | hasData() { method guessedText (line 3415) | get guessedText() { method setGuessedText (line 3418) | async setGuessedText(guessedText) { method toggleAltTextBadge (line 3428) | toggleAltTextBadge(visibility = false) { method serialize (line 3441) | serialize(isForCopying) { method data (line 3453) | get data() { method data (line 3459) | set data({ method toggle (line 3479) | toggle(enabled = false) { method shown (line 3489) | shown() { method destroy (line 3497) | destroy() { method #setState (line 3505) | async #setState() { class TouchManager (line 3578) | class TouchManager { method constructor (line 3591) | constructor({ method MIN_TOUCH_DISTANCE_TO_PINCH (line 3613) | get MIN_TOUCH_DISTANCE_TO_PINCH() { method #onTouchStart (line 3616) | #onTouchStart(evt) { method #onTouchMove (line 3684) | #onTouchMove(evt) { method #onTouchEnd (line 3728) | #onTouchEnd(evt) { method destroy (line 3742) | destroy() { class AnnotationEditor (line 3757) | class AnnotationEditor { method _resizerKeyboardManager (line 3795) | static get _resizerKeyboardManager() { method constructor (line 3817) | constructor(parameters) { method editorType (line 3848) | get editorType() { method isDrawer (line 3851) | static get isDrawer() { method _defaultLineColor (line 3854) | static get _defaultLineColor() { method deleteAnnotationElement (line 3857) | static deleteAnnotationElement(editor) { method initialize (line 3867) | static initialize(l10n, _uiManager) { method updateDefaultParams (line 3885) | static updateDefaultParams(_type, _value) {} method defaultPropertiesToUpdate (line 3886) | static get defaultPropertiesToUpdate() { method isHandlingMimeForPasting (line 3889) | static isHandlingMimeForPasting(mime) { method paste (line 3892) | static paste(item, parent) { method propertiesToUpdate (line 3895) | get propertiesToUpdate() { method _isDraggable (line 3898) | get _isDraggable() { method _isDraggable (line 3901) | set _isDraggable(value) { method isEnterHandled (line 3905) | get isEnterHandled() { method center (line 3908) | center() { method addCommands (line 3930) | addCommands(params) { method currentLayer (line 3933) | get currentLayer() { method setInBackground (line 3936) | setInBackground() { method setInForeground (line 3939) | setInForeground() { method setParent (line 3942) | setParent(parent) { method focusin (line 3951) | focusin(event) { method focusout (line 3961) | focusout(event) { method commitOrRemove (line 3977) | commitOrRemove() { method commit (line 3984) | commit() { method addToAnnotationStorage (line 3987) | addToAnnotationStorage() { method setAt (line 3990) | setAt(x, y, tx, ty) { method _moveAfterPaste (line 3997) | _moveAfterPaste(baseX, baseY) { method #translate (line 4002) | #translate([width, height], x, y) { method translate (line 4009) | translate(x, y) { method translateInPage (line 4012) | translateInPage(x, y) { method translationDone (line 4019) | translationDone() { method drag (line 4022) | drag(tx, ty) { method _onTranslating (line 4057) | _onTranslating(x, y) {} method _onTranslated (line 4058) | _onTranslated(x, y) {} method _hasBeenMoved (line 4059) | get _hasBeenMoved() { method _hasBeenResized (line 4062) | get _hasBeenResized() { method getBaseTranslation (line 4065) | getBaseTranslation() { method _mustFixPosition (line 4083) | get _mustFixPosition() { method fixAndSetPosition (line 4086) | fixAndSetPosition(rotation = this.rotation) { method #rotatePoint (line 4132) | static #rotatePoint(x, y, angle) { method screenToPageTranslation (line 4144) | screenToPageTranslation(x, y) { method pageTranslationToScreen (line 4147) | pageTranslationToScreen(x, y) { method #getRotationMatrix (line 4150) | #getRotationMatrix(rotation) { method parentScale (line 4168) | get parentScale() { method parentRotation (line 4171) | get parentRotation() { method parentDimensions (line 4174) | get parentDimensions() { method setDims (line 4181) | setDims(width, height) { method fixDims (line 4191) | fixDims() { method getInitialTranslation (line 4212) | getInitialTranslation() { method #createResizers (line 4215) | #createResizers() { method #resizerPointerdown (line 4238) | #resizerPointerdown(name, event) { method #resize (line 4290) | #resize(x, y, width, height) { method _onResized (line 4300) | _onResized() {} method #addResizeToUndoStack (line 4301) | #addResizeToUndoStack() { method _round (line 4325) | static _round(x) { method #resizerPointermove (line 4328) | #resizerPointermove(name, event) { method _onResizing (line 4430) | _onResizing() {} method altTextFinish (line 4431) | altTextFinish() { method addEditToolbar (line 4434) | async addEditToolbar() { method removeEditToolbar (line 4445) | removeEditToolbar() { method addContainer (line 4453) | addContainer(container) { method getClientDimensions (line 4461) | getClientDimensions() { method addAltTextButton (line 4464) | async addAltTextButton() { method altTextData (line 4476) | get altTextData() { method altTextData (line 4479) | set altTextData(data) { method guessedAltText (line 4485) | get guessedAltText() { method setGuessedAltText (line 4488) | async setGuessedAltText(text) { method serializeAltText (line 4491) | serializeAltText(isForCopying) { method hasAltText (line 4494) | hasAltText() { method hasAltTextData (line 4497) | hasAltTextData() { method render (line 4500) | render() { method #touchPinchStartCallback (line 4536) | #touchPinchStartCallback() { method #touchPinchCallback (line 4546) | #touchPinchCallback(_origin, prevDistance, distance) { method #touchPinchEndCallback (line 4580) | #touchPinchEndCallback() { method pointerdown (line 4585) | pointerdown(event) { method isSelected (line 4600) | get isSelected() { method #selectOnPointerEvent (line 4603) | #selectOnPointerEvent(event) { method #setUpDragSession (line 4613) | #setUpDragSession(event) { method _onStartDragging (line 4685) | _onStartDragging() {} method _onStopDragging (line 4686) | _onStopDragging() {} method moveInDOM (line 4687) | moveInDOM() { method _setParentAndPosition (line 4696) | _setParentAndPosition(parent, x, y) { method getRect (line 4703) | getRect(tx, ty, rotation = this.rotation) { method getRectInCurrentCoords (line 4726) | getRectInCurrentCoords(rect, pageHeight) { method onceAdded (line 4743) | onceAdded(focus) {} method isEmpty (line 4744) | isEmpty() { method enableEditMode (line 4747) | enableEditMode() { method disableEditMode (line 4750) | disableEditMode() { method isInEditMode (line 4753) | isInEditMode() { method shouldGetKeyboardEvents (line 4756) | shouldGetKeyboardEvents() { method needsToBeRebuilt (line 4759) | needsToBeRebuilt() { method isOnScreen (line 4762) | get isOnScreen() { method #addFocusListeners (line 4775) | #addFocusListeners() { method rebuild (line 4788) | rebuild() { method rotate (line 4791) | rotate(_angle) {} method resize (line 4792) | resize() {} method serializeDeleted (line 4793) | serializeDeleted() { method serialize (line 4801) | serialize(isForCopying = false, context = null) { method deserialize (line 4804) | static async deserialize(data, parent, uiManager) { method hasBeenModified (line 4821) | get hasBeenModified() { method remove (line 4824) | remove() { method isResizable (line 4851) | get isResizable() { method makeResizable (line 4854) | makeResizable() { method toolbarPosition (line 4860) | get toolbarPosition() { method keydown (line 4863) | keydown(event) { method #resizerKeydown (line 4929) | #resizerKeydown(event) { method #resizerBlur (line 4932) | #resizerBlur(event) { method #resizerFocus (line 4937) | #resizerFocus(name) { method #setResizerTabIndex (line 4940) | #setResizerTabIndex(value) { method _resizeWithKeyboard (line 4948) | _resizeWithKeyboard(x, y) { method #stopResizing (line 4958) | #stopResizing() { method _stopResizingWithKeyboard (line 4963) | _stopResizingWithKeyboard() { method select (line 4967) | select() { method unselect (line 4981) | unselect() { method updateParams (line 4992) | updateParams(type, value) {} method disableEditing (line 4993) | disableEditing() {} method enableEditing (line 4994) | enableEditing() {} method enterInEditMode (line 4995) | enterInEditMode() {} method getElementForAltText (line 4996) | getElementForAltText() { method contentDiv (line 4999) | get contentDiv() { method isEditing (line 5002) | get isEditing() { method isEditing (line 5005) | set isEditing(value) { method setAspectRatio (line 5017) | setAspectRatio(width, height) { method MIN_SIZE (line 5026) | static get MIN_SIZE() { method canCreateNewEmptyEditor (line 5029) | static canCreateNewEmptyEditor() { method telemetryInitialData (line 5032) | get telemetryInitialData() { method telemetryFinalData (line 5037) | get telemetryFinalData() { method _reportTelemetry (line 5040) | _reportTelemetry(data, mustWait = false) { method show (line 5069) | show(visible = this._isVisible) { method enable (line 5073) | enable() { method disable (line 5079) | disable() { method renderAnnotationElement (line 5085) | renderAnnotationElement(annotation) { method resetAnnotationElement (line 5099) | resetAnnotationElement(annotation) { class FakeEditor (line 5108) | class FakeEditor extends AnnotationEditor { method constructor (line 5109) | constructor(params) { method serialize (line 5114) | serialize() { constant SEED (line 5120) | const SEED = 0xc3d2e1f0; constant MASK_HIGH (line 5121) | const MASK_HIGH = 0xffff0000; constant MASK_LOW (line 5122) | const MASK_LOW = 0xffff; class MurmurHash3_64 (line 5123) | class MurmurHash3_64 { method constructor (line 5124) | constructor(seed) { method update (line 5128) | update(input) { method hexdigest (line 5198) | hexdigest() { class AnnotationStorage (line 5221) | class AnnotationStorage { method constructor (line 5225) | constructor() { method getValue (line 5230) | getValue(key, defaultValue) { method getRawValue (line 5237) | getRawValue(key) { method remove (line 5240) | remove(key) { method setValue (line 5254) | setValue(key, value) { method has (line 5275) | has(key) { method getAll (line 5278) | getAll() { method setAll (line 5281) | setAll(obj) { method size (line 5286) | get size() { method #setModified (line 5289) | #setModified() { method resetModified (line 5297) | resetModified() { method print (line 5305) | get print() { method serializable (line 5308) | get serializable() { method editorStats (line 5338) | get editorStats() { method resetModifiedIds (line 5375) | resetModifiedIds() { method modifiedIds (line 5378) | get modifiedIds() { class PrintAnnotationStorage (line 5395) | class PrintAnnotationStorage extends AnnotationStorage { method constructor (line 5397) | constructor(parent) { method print (line 5413) | get print() { method serializable (line 5416) | get serializable() { method modifiedIds (line 5419) | get modifiedIds() { class FontLoader (line 5429) | class FontLoader { method constructor (line 5431) | constructor({ method addNativeFontFace (line 5441) | addNativeFontFace(nativeFontFace) { method removeNativeFontFace (line 5445) | removeNativeFontFace(nativeFontFace) { method insertRule (line 5449) | insertRule(rule) { method clear (line 5457) | clear() { method loadSystemFont (line 5468) | async loadSystemFont({ method bind (line 5497) | async bind(font) { method isFontLoadingAPISupported (line 5532) | get isFontLoadingAPISupported() { method isSyncFontLoadingSupported (line 5536) | get isSyncFontLoadingSupported() { method _queueLoadingCallback (line 5539) | _queueLoadingCallback(callback) { method _loadTestFont (line 5559) | get _loadTestFont() { method _prepareFontLoadEvent (line 5563) | _prepareFontLoadEvent(font, request) { class FontFaceObject (line 5628) | class FontFaceObject { method constructor (line 5629) | constructor(translatedData, inspectFont = null) { method createNativeFontFace (line 5636) | createNativeFontFace() { method createFontFaceRule (line 5655) | createFontFaceRule() { method getPathGenerator (line 5673) | getPathGenerator(objs, character) { function onFn (line 5708) | function onFn() {} function wrapReason (line 5709) | function wrapReason(ex) { class MessageHandler (line 5730) | class MessageHandler { method constructor (line 5732) | constructor(sourceName, targetName, comObj) { method #onMessage (line 5746) | #onMessage({ method on (line 5805) | on(actionName, handler) { method send (line 5812) | send(actionName, data, transfers) { method sendWithPromise (line 5820) | sendWithPromise(actionName, data, transfers) { method sendWithStream (line 5837) | sendWithStream(actionName, data, queueingStrategy, transfers) { method #createStreamSink (line 5890) | #createStreamSink(data) { method #processStreamMessage (line 5971) | #processStreamMessage(data) { method #deleteStreamController (line 6085) | async #deleteStreamController(streamController, streamId) { method destroy (line 6089) | destroy() { class BaseCanvasFactory (line 6097) | class BaseCanvasFactory { method constructor (line 6099) | constructor({ method create (line 6104) | create(width, height) { method reset (line 6116) | reset(canvasAndContext, width, height) { method destroy (line 6126) | destroy(canvasAndContext) { method _createCanvas (line 6135) | _createCanvas(width, height) { class DOMCanvasFactory (line 6139) | class DOMCanvasFactory extends BaseCanvasFactory { method constructor (line 6140) | constructor({ method _createCanvas (line 6149) | _createCanvas(width, height) { class BaseCMapReaderFactory (line 6160) | class BaseCMapReaderFactory { method constructor (line 6161) | constructor({ method fetch (line 6168) | async fetch({ method _fetch (line 6185) | async _fetch(url) { class DOMCMapReaderFactory (line 6189) | class DOMCMapReaderFactory extends BaseCMapReaderFactory { method _fetch (line 6190) | async _fetch(url) { class BaseFilterFactory (line 6199) | class BaseFilterFactory { method addFilter (line 6200) | addFilter(maps) { method addHCMFilter (line 6203) | addHCMFilter(fgColor, bgColor) { method addAlphaFilter (line 6206) | addAlphaFilter(map) { method addLuminosityFilter (line 6209) | addLuminosityFilter(map) { method addHighlightHCMFilter (line 6212) | addHighlightHCMFilter(filterName, fgColor, bgColor, newFgColor, newBgC... method destroy (line 6215) | destroy(keepHCM = false) {} class DOMFilterFactory (line 6217) | class DOMFilterFactory extends BaseFilterFactory { method constructor (line 6225) | constructor({ method #cache (line 6233) | get #cache() { method #hcmCache (line 6236) | get #hcmCache() { method #defs (line 6239) | get #defs() { method #createTables (line 6261) | #createTables(maps) { method #createUrl (line 6282) | #createUrl(id) { method addFilter (line 6296) | addFilter(maps) { method addHCMFilter (line 6319) | addHCMFilter(fgColor, bgColor) { method addAlphaFilter (line 6373) | addAlphaFilter(map) { method addLuminosityFilter (line 6393) | addLuminosityFilter(map) { method addHighlightHCMFilter (line 6421) | addHighlightHCMFilter(filterName, fgColor, bgColor, newFgColor, newBgC... method destroy (line 6477) | destroy(keepHCM = false) { method #addLuminosityConversion (line 6489) | #addLuminosityConversion(filter) { method #addGrayConversion (line 6495) | #addGrayConversion(filter) { method #createFilter (line 6501) | #createFilter(id) { method #appendFeFunc (line 6508) | #appendFeFunc(feComponentTransfer, func, table) { method #addTransferMapConversion (line 6514) | #addTransferMapConversion(rTable, gTable, bTable, filter) { method #addTransferMapAlphaConversion (line 6521) | #addTransferMapAlphaConversion(aTable, filter) { method #getRGB (line 6526) | #getRGB(color) { class BaseStandardFontDataFactory (line 6535) | class BaseStandardFontDataFactory { method constructor (line 6536) | constructor({ method fetch (line 6541) | async fetch({ method _fetch (line 6555) | async _fetch(url) { class DOMStandardFontDataFactory (line 6559) | class DOMStandardFontDataFactory extends BaseStandardFontDataFactory { method _fetch (line 6560) | async _fetch(url) { class BaseWasmFactory (line 6569) | class BaseWasmFactory { method constructor (line 6570) | constructor({ method fetch (line 6575) | async fetch({ method _fetch (line 6589) | async _fetch(url) { class DOMWasmFactory (line 6593) | class DOMWasmFactory extends BaseWasmFactory { method _fetch (line 6594) | async _fetch(url) { function node_utils_fetchData (line 6610) | async function node_utils_fetchData(url) { class NodeFilterFactory (line 6615) | class NodeFilterFactory extends BaseFilterFactory {} class NodeCanvasFactory (line 6616) | class NodeCanvasFactory extends BaseCanvasFactory { method _createCanvas (line 6617) | _createCanvas(width, height) { class NodeCMapReaderFactory (line 6623) | class NodeCMapReaderFactory extends BaseCMapReaderFactory { method _fetch (line 6624) | async _fetch(url) { class NodeStandardFontDataFactory (line 6628) | class NodeStandardFontDataFactory extends BaseStandardFontDataFactory { method _fetch (line 6629) | async _fetch(url) { class NodeWasmFactory (line 6633) | class NodeWasmFactory extends BaseWasmFactory { method _fetch (line 6634) | async _fetch(url) { function applyBoundingBox (line 6647) | function applyBoundingBox(ctx, bbox) { class BaseShadingPattern (line 6657) | class BaseShadingPattern { method isModifyingCurrentTransform (line 6658) | isModifyingCurrentTransform() { method getPattern (line 6661) | getPattern() { class RadialAxialShadingPattern (line 6665) | class RadialAxialShadingPattern extends BaseShadingPattern { method constructor (line 6666) | constructor(IR) { method _createGradient (line 6677) | _createGradient(ctx) { method getPattern (line 6689) | getPattern(ctx, owner, inverse, pathType) { function drawTriangle (line 6719) | function drawTriangle(data, context, p1, p2, p3, c1, c2, c3) { function drawFigure (line 6821) | function drawFigure(data, figure, context) { class MeshShadingPattern (line 6847) | class MeshShadingPattern extends BaseShadingPattern { method constructor (line 6848) | constructor(IR) { method _createMeshCanvas (line 6858) | _createMeshCanvas(combinedScale, backgroundColor, cachedCanvases) { method isModifyingCurrentTransform (line 6905) | isModifyingCurrentTransform() { method getPattern (line 6908) | getPattern(ctx, owner, inverse, pathType) { class DummyShadingPattern (line 6932) | class DummyShadingPattern extends BaseShadingPattern { method getPattern (line 6933) | getPattern() { function getShadingPattern (line 6937) | function getShadingPattern(IR) { class TilingPattern (line 6952) | class TilingPattern { method constructor (line 6954) | constructor(IR, ctx, canvasGraphicsFactory, baseTransform) { method createPatternCanvas (line 6967) | createPatternCanvas(owner) { method getSizeAndScale (line 7063) | getSizeAndScale(step, realOutputSize, scale) { method clipBbox (line 7076) | clipBbox(graphics, x0, y0, x1, y1) { method setFillAndStrokeStyleToContext (line 7084) | setFillAndStrokeStyleToContext(graphics, paintType, color) { method isModifyingCurrentTransform (line 7106) | isModifyingCurrentTransform() { method getPattern (line 7109) | getPattern(ctx, owner, inverse, pathType) { function convertToRGBA (line 7129) | function convertToRGBA(params) { function convertBlackAndWhiteToRGBA (line 7138) | function convertBlackAndWhiteToRGBA({ function convertRGBToRGBA (line 7179) | function convertRGBToRGBA({ function grayToRGBA (line 7223) | function grayToRGBA(src, dest) { constant MIN_FONT_SIZE (line 7240) | const MIN_FONT_SIZE = 16; constant MAX_FONT_SIZE (line 7241) | const MAX_FONT_SIZE = 100; constant EXECUTION_TIME (line 7242) | const EXECUTION_TIME = 15; constant EXECUTION_STEPS (line 7243) | const EXECUTION_STEPS = 10; constant MAX_SIZE_TO_COMPILE (line 7244) | const MAX_SIZE_TO_COMPILE = 1000; constant FULL_CHUNK_HEIGHT (line 7245) | const FULL_CHUNK_HEIGHT = 16; constant SCALE_MATRIX (line 7246) | const SCALE_MATRIX = new DOMMatrix(); function mirrorContextOperations (line 7247) | function mirrorContextOperations(ctx, destCtx) { class CachedCanvases (line 7345) | class CachedCanvases { method constructor (line 7346) | constructor(canvasFactory) { method getCanvas (line 7350) | getCanvas(id, width, height) { method delete (line 7361) | delete(id) { method clear (line 7364) | clear() { function drawImageAtIntegerCoords (line 7372) | function drawImageAtIntegerCoords(ctx, srcImg, srcX, srcY, srcW, srcH, d... function compileType3Glyph (line 7407) | function compileType3Glyph(imgData) { class CanvasExtraState (line 7539) | class CanvasExtraState { method constructor (line 7540) | constructor(width, height) { method clone (line 7568) | clone() { method updateRectMinMax (line 7573) | updateRectMinMax(transform, rect) { method getPathBoundingBox (line 7583) | getPathBoundingBox(pathType = PathType.FILL, transform = null) { method updateClipFromPath (line 7599) | updateClipFromPath() { method isEmptyClip (line 7603) | isEmptyClip() { method startNewPathAndClipBox (line 7606) | startNewPathAndClipBox(box) { method getClippedPathBoundingBox (line 7613) | getClippedPathBoundingBox(pathType = PathType.FILL, transform = null) { function putBinaryImageData (line 7617) | function putBinaryImageData(ctx, imgData) { function putBinaryImageMask (line 7710) | function putBinaryImageMask(ctx, imgData) { function copyCtxState (line 7739) | function copyCtxState(sourceCtx, destCtx) { function resetCtxToDefault (line 7751) | function resetCtxToDefault(ctx) { function getImageSmoothingEnabled (line 7774) | function getImageSmoothingEnabled(transform, interpolate) { constant LINE_CAP_STYLES (line 7784) | const LINE_CAP_STYLES = ["butt", "round", "square"]; constant LINE_JOIN_STYLES (line 7785) | const LINE_JOIN_STYLES = ["miter", "round", "bevel"]; constant NORMAL_CLIP (line 7786) | const NORMAL_CLIP = {}; constant EO_CLIP (line 7787) | const EO_CLIP = {}; class CanvasGraphics (line 7788) | class CanvasGraphics { method constructor (line 7789) | constructor(canvasCtx, commonObjs, objs, canvasFactory, filterFactory, { method getObject (line 7827) | getObject(data, fallback = null) { method beginDrawing (line 7833) | beginDrawing({ method executeOperatorList (line 7864) | executeOperatorList(operatorList, executionStartIdx, continueCallback,... method #restoreInitialState (line 7908) | #restoreInitialState() { method endDrawing (line 7923) | endDrawing() { method #drawFilter (line 7938) | #drawFilter() { method _scaleImage (line 7949) | _scaleImage(img, inverseTransform) { method _createMaskCanvas (line 7984) | _createMaskCanvas(img) { method setLineWidth (line 8052) | setLineWidth(width) { method setLineCap (line 8059) | setLineCap(style) { method setLineJoin (line 8062) | setLineJoin(style) { method setMiterLimit (line 8065) | setMiterLimit(limit) { method setDash (line 8068) | setDash(dashArray, dashPhase) { method setRenderingIntent (line 8075) | setRenderingIntent(intent) {} method setFlatness (line 8076) | setFlatness(flatness) {} method setGState (line 8077) | setGState(states) { method inSMaskMode (line 8124) | get inSMaskMode() { method checkSMaskState (line 8127) | checkSMaskState() { method beginSMaskMode (line 8135) | beginSMaskMode() { method endSMaskMode (line 8150) | endSMaskMode() { method compose (line 8159) | compose(dirtyBox) { method composeSMask (line 8179) | composeSMask(ctx, smask, layerCtx, layerBox) { method genericComposeSMask (line 8195) | genericComposeSMask(maskCtx, layerCtx, width, height, subtype, backdro... method save (line 8239) | save() { method restore (line 8248) | restore() { method transform (line 8265) | transform(a, b, c, d, e, f) { method constructPath (line 8270) | constructPath(op, data, minMax) { method closePath (line 8303) | closePath() { method stroke (line 8306) | stroke(path, consumePath = true) { method closeStroke (line 8331) | closeStroke(path) { method fill (line 8334) | fill(path, consumePath = true) { method eoFill (line 8366) | eoFill(path) { method fillStroke (line 8370) | fillStroke(path) { method eoFillStroke (line 8375) | eoFillStroke(path) { method closeFillStroke (line 8379) | closeFillStroke(path) { method closeEOFillStroke (line 8382) | closeEOFillStroke(path) { method endPath (line 8386) | endPath(path) { method clip (line 8389) | clip() { method eoClip (line 8392) | eoClip() { method beginText (line 8395) | beginText() { method endText (line 8401) | endText() { method setCharSpacing (line 8423) | setCharSpacing(spacing) { method setWordSpacing (line 8426) | setWordSpacing(spacing) { method setHScale (line 8429) | setHScale(scale) { method setLeading (line 8432) | setLeading(leading) { method setFont (line 8435) | setFont(fontRefName, size) { method setTextRenderingMode (line 8474) | setTextRenderingMode(mode) { method setTextRise (line 8477) | setTextRise(rise) { method moveText (line 8480) | moveText(x, y) { method setLeadingMoveText (line 8484) | setLeadingMoveText(x, y) { method setTextMatrix (line 8488) | setTextMatrix(a, b, c, d, e, f) { method nextLine (line 8494) | nextLine() { method #getScaledPath (line 8497) | #getScaledPath(path, currentTransform, transform) { method paintChar (line 8502) | paintChar(character, x, y, patternFillTransform, patternStrokeTransfor... method isFontSubpixelAAEnabled (line 8570) | get isFontSubpixelAAEnabled() { method showText (line 8586) | showText(glyphs) { method showType3Text (line 8723) | showType3Text(glyphs) { method setCharWidth (line 8774) | setCharWidth(xWidth, yWidth) {} method setCharWidthAndBounds (line 8775) | setCharWidthAndBounds(xWidth, yWidth, llx, lly, urx, ury) { method getColorN_Pattern (line 8780) | getColorN_Pattern(IR) { method setStrokeColorN (line 8796) | setStrokeColorN() { method setFillColorN (line 8800) | setFillColorN() { method setStrokeRGBColor (line 8804) | setStrokeRGBColor(r, g, b) { method setStrokeTransparent (line 8808) | setStrokeTransparent() { method setFillRGBColor (line 8812) | setFillRGBColor(r, g, b) { method setFillTransparent (line 8816) | setFillTransparent() { method _getPattern (line 8820) | _getPattern(objId, matrix = null) { method shadingFill (line 8833) | shadingFill(objId) { method beginInlineImage (line 8855) | beginInlineImage() { method beginImageData (line 8858) | beginImageData() { method paintFormXObjectBegin (line 8861) | paintFormXObjectBegin(matrix, bbox) { method paintFormXObjectEnd (line 8880) | paintFormXObjectEnd() { method beginGroup (line 8887) | beginGroup(group) { method endGroup (line 8957) | endGroup(group) { method beginAnnotation (line 8981) | beginAnnotation(id, rect, transform, matrix, hasOwnCanvas) { method endAnnotation (line 9029) | endAnnotation() { method paintImageMaskXObject (line 9038) | paintImageMaskXObject(img) { method paintImageMaskXObjectRepeat (line 9064) | paintImageMaskXObjectRepeat(img, scaleX, skewX = 0, skewY = 0, scaleY,... method paintImageMaskXObjectGroup (line 9083) | paintImageMaskXObjectGroup(images) { method paintImageXObject (line 9114) | paintImageXObject(objId) { method paintImageXObjectRepeat (line 9125) | paintImageXObjectRepeat(objId, scaleX, scaleY, positions) { method applyTransferMapsToCanvas (line 9148) | applyTransferMapsToCanvas(ctx) { method applyTransferMapsToBitmap (line 9156) | applyTransferMapsToBitmap(imgData) { method paintInlineImageXObject (line 9172) | paintInlineImageXObject(imgData) { method paintInlineImageXObjectGroup (line 9206) | paintInlineImageXObjectGroup(imgData, map) { method paintSolidColorImageMask (line 9231) | paintSolidColorImageMask() { method markPoint (line 9238) | markPoint(tag) {} method markPointProps (line 9239) | markPointProps(tag, properties) {} method beginMarkedContent (line 9240) | beginMarkedContent(tag) { method beginMarkedContentProps (line 9245) | beginMarkedContentProps(tag, properties) { method endMarkedContent (line 9257) | endMarkedContent() { method beginCompat (line 9261) | beginCompat() {} method endCompat (line 9262) | endCompat() {} method consumePath (line 9263) | consumePath(path, clipBox) { method getSinglePixelWidth (line 9285) | getSinglePixelWidth() { method getScaleForStroking (line 9299) | getScaleForStroking() { method rescaleAndStroke (line 9348) | rescaleAndStroke(path, saveRestore) { method isContentVisible (line 9381) | isContentVisible() { class GlobalWorkerOptions (line 9397) | class GlobalWorkerOptions { method workerPort (line 9400) | static get workerPort() { method workerPort (line 9403) | static set workerPort(val) { method workerSrc (line 9409) | static get workerSrc() { method workerSrc (line 9412) | static set workerSrc(val) { class Metadata (line 9422) | class Metadata { method constructor (line 9425) | constructor({ method getRaw (line 9432) | getRaw() { method get (line 9435) | get(name) { method getAll (line 9438) | getAll() { method has (line 9441) | has(name) { constant INTERNAL (line 9449) | const INTERNAL = Symbol("INTERNAL"); class OptionalContentGroup (line 9450) | class OptionalContentGroup { method constructor (line 9455) | constructor(renderingIntent, { method visible (line 9468) | get visible() { method _setVisible (line 9486) | _setVisible(internal, visible, userSet = false) { class OptionalContentConfig (line 9494) | class OptionalContentConfig { method constructor (line 9499) | constructor(data, renderingIntent = RenderingIntentFlag.DISPLAY) { method #evaluateVisibilityExpression (line 9525) | #evaluateVisibilityExpression(array) { method isVisible (line 9561) | isVisible(group) { method setVisibility (line 9630) | setVisibility(id, visible = true, preserveRB = true) { method setOCGState (line 9648) | setOCGState({ method hasInitialVisibility (line 9679) | get hasInitialVisibility() { method getOrder (line 9682) | getOrder() { method getGroups (line 9691) | getGroups() { method getGroup (line 9694) | getGroup(id) { method getHash (line 9697) | getHash() { class PDFDataTransportStream (line 9712) | class PDFDataTransportStream { method constructor (line 9713) | constructor(pdfDataRangeTransport, { method _onReceiveData (line 9759) | _onReceiveData({ method _progressiveDataLength (line 9781) | get _progressiveDataLength() { method _onProgress (line 9784) | _onProgress(evt) { method _onProgressiveDone (line 9796) | _onProgressiveDone() { method _removeRangeReader (line 9800) | _removeRangeReader(reader) { method getFullReader (line 9806) | getFullReader() { method getRangeReader (line 9812) | getRangeReader(begin, end) { method cancelAllRequests (line 9821) | cancelAllRequests(reason) { class PDFDataTransportStreamReader (line 9829) | class PDFDataTransportStreamReader { method constructor (line 9830) | constructor(stream, queuedChunks, progressiveDone = false, contentDisp... method _enqueue (line 9844) | _enqueue(chunk) { method headersReady (line 9859) | get headersReady() { method filename (line 9862) | get filename() { method isRangeSupported (line 9865) | get isRangeSupported() { method isStreamingSupported (line 9868) | get isStreamingSupported() { method contentLength (line 9871) | get contentLength() { method read (line 9874) | async read() { method cancel (line 9892) | cancel(reason) { method progressiveDone (line 9902) | progressiveDone() { class PDFDataTransportStreamRangeReader (line 9909) | class PDFDataTransportStreamRangeReader { method constructor (line 9910) | constructor(stream, begin, end) { method _enqueue (line 9919) | _enqueue(chunk) { method isStreamingSupported (line 9942) | get isStreamingSupported() { method read (line 9945) | async read() { method cancel (line 9964) | cancel(reason) { function getFilenameFromContentDispositionHeader (line 9979) | function getFilenameFromContentDispositionHeader(contentDisposition) { function createHeaders (line 10112) | function createHeaders(isHttp, httpHeaders) { function getResponseOrigin (line 10125) | function getResponseOrigin(url) { function validateRangeRequestCapabilities (line 10128) | function validateRangeRequestCapabilities({ function extractFilenameFromHeader (line 10159) | function extractFilenameFromHeader(responseHeaders) { function createResponseError (line 10174) | function createResponseError(status, url) { function validateResponseStatus (line 10177) | function validateResponseStatus(status) { function createFetchOptions (line 10184) | function createFetchOptions(headers, withCredentials, abortController) { function getArrayBuffer (line 10194) | function getArrayBuffer(val) { class PDFFetchStream (line 10204) | class PDFFetchStream { method constructor (line 10206) | constructor(source) { method _progressiveDataLength (line 10213) | get _progressiveDataLength() { method getFullReader (line 10216) | getFullReader() { method getRangeReader (line 10221) | getRangeReader(begin, end) { method cancelAllRequests (line 10229) | cancelAllRequests(reason) { class PDFFetchStreamReader (line 10236) | class PDFFetchStreamReader { method constructor (line 10237) | constructor(stream) { method headersReady (line 10282) | get headersReady() { method filename (line 10285) | get filename() { method contentLength (line 10288) | get contentLength() { method isRangeSupported (line 10291) | get isRangeSupported() { method isStreamingSupported (line 10294) | get isStreamingSupported() { method read (line 10297) | async read() { method cancel (line 10319) | cancel(reason) { class PDFFetchStreamRangeReader (line 10324) | class PDFFetchStreamRangeReader { method constructor (line 10325) | constructor(stream, begin, end) { method isStreamingSupported (line 10350) | get isStreamingSupported() { method read (line 10353) | async read() { method cancel (line 10374) | cancel(reason) { constant OK_RESPONSE (line 10383) | const OK_RESPONSE = 200; constant PARTIAL_CONTENT_RESPONSE (line 10384) | const PARTIAL_CONTENT_RESPONSE = 206; function network_getArrayBuffer (line 10385) | function network_getArrayBuffer(xhr) { class NetworkManager (line 10392) | class NetworkManager { method constructor (line 10394) | constructor({ method request (line 10406) | request(args) { method onProgress (line 10437) | onProgress(xhrId, evt) { method onStateChange (line 10444) | onStateChange(xhrId, evt) { method getRequestXhr (line 10493) | getRequestXhr(xhrId) { method isPendingRequest (line 10496) | isPendingRequest(xhrId) { method abortRequest (line 10499) | abortRequest(xhrId) { class PDFNetworkStream (line 10505) | class PDFNetworkStream { method constructor (line 10506) | constructor(source) { method _onRangeRequestReaderClosed (line 10513) | _onRangeRequestReaderClosed(reader) { method getFullReader (line 10519) | getFullReader() { method getRangeReader (line 10524) | getRangeReader(begin, end) { method cancelAllRequests (line 10530) | cancelAllRequests(reason) { class PDFNetworkStreamFullRequestReader (line 10537) | class PDFNetworkStreamFullRequestReader { method constructor (line 10538) | constructor(manager, source) { method _onHeadersReceived (line 10563) | _onHeadersReceived() { method _onDone (line 10591) | _onDone(data) { method _onError (line 10615) | _onError(status) { method _onProgress (line 10624) | _onProgress(evt) { method filename (line 10630) | get filename() { method isRangeSupported (line 10633) | get isRangeSupported() { method isStreamingSupported (line 10636) | get isStreamingSupported() { method contentLength (line 10639) | get contentLength() { method headersReady (line 10642) | get headersReady() { method read (line 10645) | async read() { method cancel (line 10667) | cancel(reason) { class PDFNetworkStreamRangeRequestReader (line 10683) | class PDFNetworkStreamRangeRequestReader { method constructor (line 10684) | constructor(manager, begin, end) { method _onHeadersReceived (line 10702) | _onHeadersReceived() { method _close (line 10709) | _close() { method _onDone (line 10712) | _onDone(data) { method _onError (line 10733) | _onError(status) { method _onProgress (line 10741) | _onProgress(evt) { method isStreamingSupported (line 10748) | get isStreamingSupported() { method read (line 10751) | async read() { method cancel (line 10773) | cancel(reason) { function parseUrlOrPath (line 10793) | function parseUrlOrPath(sourceUrl) { class PDFNodeStream (line 10800) | class PDFNodeStream { method constructor (line 10801) | constructor(source) { method _progressiveDataLength (line 10808) | get _progressiveDataLength() { method getFullReader (line 10811) | getFullReader() { method getRangeReader (line 10816) | getRangeReader(start, end) { method cancelAllRequests (line 10824) | cancelAllRequests(reason) { class PDFNodeStreamFsFullReader (line 10831) | class PDFNodeStreamFsFullReader { method constructor (line 10832) | constructor(stream) { method headersReady (line 10864) | get headersReady() { method filename (line 10867) | get filename() { method contentLength (line 10870) | get contentLength() { method isRangeSupported (line 10873) | get isRangeSupported() { method isStreamingSupported (line 10876) | get isStreamingSupported() { method read (line 10879) | async read() { method cancel (line 10906) | cancel(reason) { method _error (line 10913) | _error(reason) { method _setReadableStream (line 10917) | _setReadableStream(readableStream) { class PDFNodeStreamFsRangeReader (line 10938) | class PDFNodeStreamFsRangeReader { method constructor (line 10939) | constructor(stream, start, end) { method isStreamingSupported (line 10955) | get isStreamingSupported() { method read (line 10958) | async read() { method cancel (line 10984) | cancel(reason) { method _error (line 10991) | _error(reason) { method _setReadableStream (line 10995) | _setReadableStream(readableStream) { constant MAX_TEXT_DIVS_TO_RENDER (line 11017) | const MAX_TEXT_DIVS_TO_RENDER = 100000; constant DEFAULT_FONT_SIZE (line 11018) | const DEFAULT_FONT_SIZE = 30; class TextLayer (line 11019) | class TextLayer { method constructor (line 11043) | constructor({ method fontFamilyMap (line 11085) | static get fontFamilyMap() { method render (line 11092) | render() { method update (line 11113) | update({ method cancel (line 11141) | cancel() { method textDivs (line 11147) | get textDivs() { method textContentItemsStr (line 11150) | get textContentItemsStr() { method #processItems (line 11153) | #processItems(items) { method #appendText (line 11184) | #appendText(geom) { method #layout (line 11259) | #layout(params) { method cleanup (line 11295) | static cleanup() { method #getCtx (line 11307) | static #getCtx(lang = null) { method #ensureCtxFont (line 11326) | static #ensureCtxFont(ctx, size, family) { method #ensureMinFontSizeComputed (line 11335) | static #ensureMinFontSizeComputed() { method #getAscent (line 11349) | static #getAscent(fontFamily, style, lang) { class XfaText (line 11380) | class XfaText { method textContent (line 11381) | static textContent(xfa) { method shouldBuildText (line 11417) | static shouldBuildText(name) { constant DEFAULT_RANGE_CHUNK_SIZE (line 11444) | const DEFAULT_RANGE_CHUNK_SIZE = 65536; constant RENDERING_CANCELLED_TIMEOUT (line 11445) | const RENDERING_CANCELLED_TIMEOUT = 100; function getDocument (line 11446) | function getDocument(src = {}) { function getUrlProp (line 11622) | function getUrlProp(val) { function getDataProp (line 11637) | function getDataProp(val) { function getFactoryUrlProp (line 11652) | function getFactoryUrlProp(val) { class PDFDocumentLoadingTask (line 11664) | class PDFDocumentLoadingTask { method promise (line 11673) | get promise() { method destroy (line 11676) | async destroy() { method getData (line 11693) | async getData() { class PDFDataRangeTransport (line 11697) | class PDFDataRangeTransport { method constructor (line 11698) | constructor(length, initialData, progressiveDone = false, contentDispo... method addRangeListener (line 11709) | addRangeListener(listener) { method addProgressListener (line 11712) | addProgressListener(listener) { method addProgressiveReadListener (line 11715) | addProgressiveReadListener(listener) { method addProgressiveDoneListener (line 11718) | addProgressiveDoneListener(listener) { method onDataRange (line 11721) | onDataRange(begin, chunk) { method onDataProgress (line 11726) | onDataProgress(loaded, total) { method onDataProgressiveRead (line 11733) | onDataProgressiveRead(chunk) { method onDataProgressiveDone (line 11740) | onDataProgressiveDone() { method transportReady (line 11747) | transportReady() { method requestDataRange (line 11750) | requestDataRange(begin, end) { method abort (line 11753) | abort() {} class PDFDocumentProxy (line 11755) | class PDFDocumentProxy { method constructor (line 11756) | constructor(pdfInfo, transport) { method annotationStorage (line 11760) | get annotationStorage() { method canvasFactory (line 11763) | get canvasFactory() { method filterFactory (line 11766) | get filterFactory() { method numPages (line 11769) | get numPages() { method fingerprints (line 11772) | get fingerprints() { method isPureXfa (line 11775) | get isPureXfa() { method allXfaHtml (line 11778) | get allXfaHtml() { method getPage (line 11781) | getPage(pageNumber) { method getPageIndex (line 11784) | getPageIndex(ref) { method getDestinations (line 11787) | getDestinations() { method getDestination (line 11790) | getDestination(id) { method getPageLabels (line 11793) | getPageLabels() { method getPageLayout (line 11796) | getPageLayout() { method getPageMode (line 11799) | getPageMode() { method getViewerPreferences (line 11802) | getViewerPreferences() { method getOpenAction (line 11805) | getOpenAction() { method getAttachments (line 11808) | getAttachments() { method getJSActions (line 11811) | getJSActions() { method getOutline (line 11814) | getOutline() { method getOptionalContentConfig (line 11817) | getOptionalContentConfig({ method getPermissions (line 11825) | getPermissions() { method getMetadata (line 11828) | getMetadata() { method getMarkInfo (line 11831) | getMarkInfo() { method getData (line 11834) | getData() { method saveDocument (line 11837) | saveDocument() { method getDownloadInfo (line 11840) | getDownloadInfo() { method cleanup (line 11843) | cleanup(keepLoadedFonts = false) { method destroy (line 11846) | destroy() { method cachedPageNumber (line 11849) | cachedPageNumber(ref) { method loadingParams (line 11852) | get loadingParams() { method loadingTask (line 11855) | get loadingTask() { method getFieldObjects (line 11858) | getFieldObjects() { method hasJSActions (line 11861) | hasJSActions() { method getCalculationOrderIds (line 11864) | getCalculationOrderIds() { class PDFPageProxy (line 11868) | class PDFPageProxy { method constructor (line 11870) | constructor(pageIndex, pageInfo, transport, pdfBug = false) { method pageNumber (line 11881) | get pageNumber() { method rotate (line 11884) | get rotate() { method ref (line 11887) | get ref() { method userUnit (line 11890) | get userUnit() { method view (line 11893) | get view() { method getViewport (line 11896) | getViewport({ method getAnnotations (line 11913) | getAnnotations({ method getJSActions (line 11921) | getJSActions() { method filterFactory (line 11924) | get filterFactory() { method isPureXfa (line 11927) | get isPureXfa() { method getXfa (line 11930) | async getXfa() { method render (line 11933) | render({ method getOperatorList (line 12036) | getOperatorList({ method streamTextContent (line 12071) | streamTextContent({ method getTextContent (line 12087) | getTextContent(params = {}) { method getStructTree (line 12117) | getStructTree() { method _destroy (line 12120) | _destroy() { method cleanup (line 12141) | cleanup(resetStats = false) { method #tryCleanup (line 12149) | #tryCleanup() { method _startRenderPage (line 12166) | _startRenderPage(transparency, cacheKey) { method _renderPageChunk (line 12174) | _renderPageChunk(operatorListChunk, intentState) { method _pumpOperatorList (line 12188) | _pumpOperatorList({ method _abortOperatorList (line 12245) | _abortOperatorList({ method stats (line 12290) | get stats() { class LoopbackPort (line 12294) | class LoopbackPort { method postMessage (line 12297) | postMessage(obj, transfer) { method addEventListener (line 12309) | addEventListener(name, listener, options = null) { method removeEventListener (line 12325) | removeEventListener(name, listener) { method terminate (line 12330) | terminate() { class PDFWorker (line 12337) | class PDFWorker { method constructor (line 12361) | constructor({ method promise (line 12383) | get promise() { method #resolve (line 12386) | #resolve() { method port (line 12392) | get port() { method messageHandler (line 12395) | get messageHandler() { method _initializeFromPort (line 12398) | _initializeFromPort(port) { method _initialize (line 12404) | _initialize() { method _setupFakeWorker (line 12472) | _setupFakeWorker() { method destroy (line 12493) | destroy() { method fromPort (line 12502) | static fromPort(params) { method workerSrc (line 12515) | static get workerSrc() { method #mainThreadWorkerMessageHandler (line 12521) | static get #mainThreadWorkerMessageHandler() { method _setupFakeWorkerGlobal (line 12528) | static get _setupFakeWorkerGlobal() { class WorkerTransport (line 12542) | class WorkerTransport { method constructor (line 12548) | constructor(messageHandler, loadingTask, networkStream, params, factor... method #cacheSimpleMethod (line 12571) | #cacheSimpleMethod(name, data = null) { method annotationStorage (line 12580) | get annotationStorage() { method getRenderingIntent (line 12583) | getRenderingIntent(intent, annotationMode = AnnotationMode.ENABLE, pri... method destroy (line 12633) | destroy() { method setupMessageHandler (line 12665) | setupMessageHandler() { method getData (line 12901) | getData() { method saveDocument (line 12904) | saveDocument() { method getPage (line 12921) | getPage(pageNumber) { method getPageIndex (line 12946) | getPageIndex(ref) { method getAnnotations (line 12955) | getAnnotations(pageIndex, intent) { method getFieldObjects (line 12961) | getFieldObjects() { method hasJSActions (line 12964) | hasJSActions() { method getCalculationOrderIds (line 12967) | getCalculationOrderIds() { method getDestinations (line 12970) | getDestinations() { method getDestination (line 12973) | getDestination(id) { method getPageLabels (line 12981) | getPageLabels() { method getPageLayout (line 12984) | getPageLayout() { method getPageMode (line 12987) | getPageMode() { method getViewerPreferences (line 12990) | getViewerPreferences() { method getOpenAction (line 12993) | getOpenAction() { method getAttachments (line 12996) | getAttachments() { method getDocJSActions (line 12999) | getDocJSActions() { method getPageJSActions (line 13002) | getPageJSActions(pageIndex) { method getStructTree (line 13007) | getStructTree(pageIndex) { method getOutline (line 13012) | getOutline() { method getOptionalContentConfig (line 13015) | getOptionalContentConfig(renderingIntent) { method getPermissions (line 13018) | getPermissions() { method getMetadata (line 13021) | getMetadata() { method getMarkInfo (line 13036) | getMarkInfo() { method startCleanup (line 13039) | async startCleanup(keepLoadedFonts = false) { method cachedPageNumber (line 13058) | cachedPageNumber(ref) { constant INITIAL_DATA (line 13066) | const INITIAL_DATA = Symbol("INITIAL_DATA"); class PDFObjects (line 13067) | class PDFObjects { method #ensureObj (line 13069) | #ensureObj(objId) { method get (line 13075) | get(objId, callback = null) { method has (line 13087) | has(objId) { method delete (line 13091) | delete(objId) { method resolve (line 13099) | resolve(objId, data = null) { method clear (line 13104) | clear() { method [Symbol.iterator] (line 13113) | *[Symbol.iterator]() { class RenderTask (line 13125) | class RenderTask { method constructor (line 13129) | constructor(internalRenderTask) { method promise (line 13132) | get promise() { method cancel (line 13135) | cancel(extraDelay = 0) { method separateAnnots (line 13138) | get separateAnnots() { class InternalRenderTask (line 13151) | class InternalRenderTask { method constructor (line 13154) | constructor({ method completed (line 13193) | get completed() { method initializeGraphics (line 13196) | initializeGraphics({ method cancel (line 13233) | cancel(error = null, extraDelay = 0) { method operatorListChanged (line 13246) | operatorListChanged() { method _continue (line 13257) | _continue() { method _scheduleNext (line 13268) | _scheduleNext() { method _next (line 13278) | async _next() { function makeColorComp (line 13297) | function makeColorComp(n) { function scaleAndClamp (line 13300) | function scaleAndClamp(x) { class ColorConverters (line 13303) | class ColorConverters { method CMYK_G (line 13304) | static CMYK_G([c, y, m, k]) { method G_CMYK (line 13307) | static G_CMYK([g]) { method G_RGB (line 13310) | static G_RGB([g]) { method G_rgb (line 13313) | static G_rgb([g]) { method G_HTML (line 13317) | static G_HTML([g]) { method RGB_G (line 13321) | static RGB_G([r, g, b]) { method RGB_rgb (line 13324) | static RGB_rgb(color) { method RGB_HTML (line 13327) | static RGB_HTML(color) { method T_HTML (line 13330) | static T_HTML() { method T_rgb (line 13333) | static T_rgb() { method CMYK_RGB (line 13336) | static CMYK_RGB([c, y, m, k]) { method CMYK_rgb (line 13339) | static CMYK_rgb([c, y, m, k]) { method CMYK_HTML (line 13342) | static CMYK_HTML(components) { method RGB_CMYK (line 13346) | static RGB_CMYK([r, g, b]) { class BaseSVGFactory (line 13358) | class BaseSVGFactory { method create (line 13359) | create(width, height, skipDimensions = false) { method createElement (line 13373) | createElement(type) { method _createSVG (line 13379) | _createSVG(type) { class DOMSVGFactory (line 13383) | class DOMSVGFactory extends BaseSVGFactory { method _createSVG (line 13384) | _createSVG(type) { class XfaLayer (line 13391) | class XfaLayer { method setupStorage (line 13392) | static setupStorage(html, id, element, storage, intent) { method setAttributes (line 13460) | static setAttributes({ method render (line 13508) | static render(parameters) { method update (line 13593) | static update(parameters) { constant DEFAULT_TAB_INDEX (line 13607) | const DEFAULT_TAB_INDEX = 1000; class AnnotationElementFactory (line 13610) | class AnnotationElementFactory { method create (line 13611) | static create(parameters) { class AnnotationElement (line 13671) | class AnnotationElement { method constructor (line 13675) | constructor(parameters, { method _hasPopupData (line 13700) | static _hasPopupData({ method _isEditable (line 13707) | get _isEditable() { method hasPopupData (line 13710) | get hasPopupData() { method updateEdited (line 13713) | updateEdited(params) { method resetEdited (line 13728) | resetEdited() { method #setRectEdited (line 13736) | #setRectEdited(rect) { method _createContainer (line 13766) | _createContainer(ignoreBorder) { method setRotation (line 13860) | setRotation(angle, container = this.container) { method _commonActions (line 13879) | get _commonActions() { method _dispatchEventFromSandbox (line 13957) | _dispatchEventFromSandbox(actions, jsEvent) { method _setDefaultPropertiesFromJS (line 13964) | _setDefaultPropertiesFromJS(element) { method _createQuadrilaterals (line 13987) | _createQuadrilaterals() { method _createPopup (line 14057) | _createPopup() { method render (line 14078) | render() { method _getElementsByName (line 14081) | _getElementsByName(name, skipId = null) { method show (line 14131) | show() { method hide (line 14137) | hide() { method getElementsToTriggerPopup (line 14143) | getElementsToTriggerPopup() { method addHighlightArea (line 14146) | addHighlightArea() { method _editOnDoubleClick (line 14156) | _editOnDoubleClick() { method width (line 14174) | get width() { method height (line 14177) | get height() { class LinkAnnotationElement (line 14181) | class LinkAnnotationElement extends AnnotationElement { method constructor (line 14182) | constructor(parameters, options = null) { method render (line 14190) | render() { method #setInternalLink (line 14232) | #setInternalLink() { method _bindLink (line 14235) | _bindLink(link, destination) { method _bindNamedAction (line 14247) | _bindNamedAction(link, action) { method #bindAttachment (line 14255) | #bindAttachment(link, attachment, dest = null) { method #bindSetOCGState (line 14266) | #bindSetOCGState(link, action) { method _bindJSAction (line 14274) | _bindJSAction(link, data) { method _bindResetFormAction (line 14298) | _bindResetFormAction(link, resetForm) { class TextAnnotationElement (line 14401) | class TextAnnotationElement extends AnnotationElement { method constructor (line 14402) | constructor(parameters) { method render (line 14407) | render() { class WidgetAnnotationElement (line 14422) | class WidgetAnnotationElement extends AnnotationElement { method render (line 14423) | render() { method showElementAndHideCanvas (line 14426) | showElementAndHideCanvas(element) { method _getKeyModifier (line 14434) | _getKeyModifier(event) { method _setEventListener (line 14437) | _setEventListener(element, elementData, baseName, eventName, valueGett... method _setEventListeners (line 14478) | _setEventListeners(element, elementData, names, getter) { method _setBackgroundColor (line 14495) | _setBackgroundColor(element) { method _setTextStyle (line 14499) | _setTextStyle(element) { method _setRequired (line 14524) | _setRequired(element, isRequired) { class TextWidgetAnnotationElement (line 14533) | class TextWidgetAnnotationElement extends WidgetAnnotationElement { method constructor (line 14534) | constructor(parameters) { method setPropertyOnSiblings (line 14540) | setPropertyOnSiblings(base, key, value, keyInStorage) { method render (line 14551) | render() { class SignatureWidgetAnnotationElement (line 14851) | class SignatureWidgetAnnotationElement extends WidgetAnnotationElement { method constructor (line 14852) | constructor(parameters) { class CheckboxWidgetAnnotationElement (line 14858) | class CheckboxWidgetAnnotationElement extends WidgetAnnotationElement { method constructor (line 14859) | constructor(parameters) { method render (line 14864) | render() { class RadioButtonWidgetAnnotationElement (line 14932) | class RadioButtonWidgetAnnotationElement extends WidgetAnnotationElement { method constructor (line 14933) | constructor(parameters) { method render (line 14938) | render() { class PushButtonWidgetAnnotationElement (line 15015) | class PushButtonWidgetAnnotationElement extends LinkAnnotationElement { method constructor (line 15016) | constructor(parameters) { method render (line 15021) | render() { class ChoiceWidgetAnnotationElement (line 15034) | class ChoiceWidgetAnnotationElement extends WidgetAnnotationElement { method constructor (line 15035) | constructor(parameters) { method render (line 15040) | render() { class PopupAnnotationElement (line 15256) | class PopupAnnotationElement extends AnnotationElement { method constructor (line 15257) | constructor(parameters) { method render (line 15268) | render() { class PopupElement (line 15294) | class PopupElement { method constructor (line 15314) | constructor({ method render (line 15352) | render() { method #html (line 15394) | get #html() { method #fontSize (line 15402) | get #fontSize() { method #fontColor (line 15405) | get #fontColor() { method #makePopupContent (line 15408) | #makePopupContent(text) { method _formatContents (line 15438) | _formatContents({ method #keyDown (line 15455) | #keyDown(event) { method updateEdited (line 15463) | updateEdited({ method resetEdited (line 15481) | resetEdited() { method #setPosition (line 15494) | #setPosition() { method #toggle (line 15532) | #toggle() { method #show (line 15544) | #show() { method #hide (line 15556) | #hide() { method forceHide (line 15564) | forceHide() { method maybeShow (line 15571) | maybeShow() { method isVisible (line 15581) | get isVisible() { class FreeTextAnnotationElement (line 15585) | class FreeTextAnnotationElement extends AnnotationElement { method constructor (line 15586) | constructor(parameters) { method render (line 15595) | render() { class LineAnnotationElement (line 15615) | class LineAnnotationElement extends AnnotationElement { method constructor (line 15617) | constructor(parameters) { method render (line 15623) | render() { method getElementsToTriggerPopup (line 15646) | getElementsToTriggerPopup() { method addHighlightArea (line 15649) | addHighlightArea() { class SquareAnnotationElement (line 15653) | class SquareAnnotationElement extends AnnotationElement { method constructor (line 15655) | constructor(parameters) { method render (line 15661) | render() { method getElementsToTriggerPopup (line 15685) | getElementsToTriggerPopup() { method addHighlightArea (line 15688) | addHighlightArea() { class CircleAnnotationElement (line 15692) | class CircleAnnotationElement extends AnnotationElement { method constructor (line 15694) | constructor(parameters) { method render (line 15700) | render() { method getElementsToTriggerPopup (line 15724) | getElementsToTriggerPopup() { method addHighlightArea (line 15727) | addHighlightArea() { class PolylineAnnotationElement (line 15731) | class PolylineAnnotationElement extends AnnotationElement { method constructor (line 15733) | constructor(parameters) { method render (line 15741) | render() { method getElementsToTriggerPopup (line 15776) | getElementsToTriggerPopup() { method addHighlightArea (line 15779) | addHighlightArea() { class PolygonAnnotationElement (line 15783) | class PolygonAnnotationElement extends PolylineAnnotationElement { method constructor (line 15784) | constructor(parameters) { class CaretAnnotationElement (line 15790) | class CaretAnnotationElement extends AnnotationElement { method constructor (line 15791) | constructor(parameters) { method render (line 15797) | render() { class InkAnnotationElement (line 15805) | class InkAnnotationElement extends AnnotationElement { method constructor (line 15808) | constructor(parameters) { method #getTransform (line 15817) | #getTransform(rotation, rect) { method render (line 15845) | render() { method updateEdited (line 15884) | updateEdited(params) { method getElementsToTriggerPopup (line 15911) | getElementsToTriggerPopup() { method addHighlightArea (line 15914) | addHighlightArea() { class HighlightAnnotationElement (line 15918) | class HighlightAnnotationElement extends AnnotationElement { method constructor (line 15919) | constructor(parameters) { method render (line 15927) | render() { class UnderlineAnnotationElement (line 15936) | class UnderlineAnnotationElement extends AnnotationElement { method constructor (line 15937) | constructor(parameters) { method render (line 15944) | render() { class SquigglyAnnotationElement (line 15952) | class SquigglyAnnotationElement extends AnnotationElement { method constructor (line 15953) | constructor(parameters) { method render (line 15960) | render() { class StrikeOutAnnotationElement (line 15968) | class StrikeOutAnnotationElement extends AnnotationElement { method constructor (line 15969) | constructor(parameters) { method render (line 15976) | render() { class StampAnnotationElement (line 15984) | class StampAnnotationElement extends AnnotationElement { method constructor (line 15985) | constructor(parameters) { method render (line 15992) | render() { class FileAttachmentAnnotationElement (line 16002) | class FileAttachmentAnnotationElement extends AnnotationElement { method constructor (line 16004) | constructor(parameters) { method render (line 16018) | render() { method getElementsToTriggerPopup (line 16052) | getElementsToTriggerPopup() { method addHighlightArea (line 16055) | addHighlightArea() { method #download (line 16058) | #download() { class AnnotationLayer (line 16062) | class AnnotationLayer { method constructor (line 16067) | constructor({ method hasEditableAnnotations (line 16085) | hasEditableAnnotations() { method #appendElement (line 16088) | async #appendElement(element, id) { method render (line 16100) | async render(params) { method addLinkAnnotations (line 16163) | async addLinkAnnotations(annotations, linkService) { method update (line 16182) | update({ method #setAnnotationCanvasMap (line 16193) | #setAnnotationCanvasMap() { method getEditableAnnotations (line 16229) | getEditableAnnotations() { method getEditableAnnotation (line 16232) | getEditableAnnotation(id) { method _defaultBorderStyle (line 16235) | static get _defaultBorderStyle() { constant EOL_PATTERN (line 16252) | const EOL_PATTERN = /\r\n?|\n/g; class FreeTextEditor (line 16253) | class FreeTextEditor extends AnnotationEditor { method _keyboardManager (line 16263) | static get _keyboardManager() { method constructor (line 16298) | constructor(params) { method initialize (line 16306) | static initialize(l10n, uiManager) { method updateDefaultParams (line 16311) | static updateDefaultParams(type, value) { method updateParams (line 16321) | updateParams(type, value) { method defaultPropertiesToUpdate (line 16331) | static get defaultPropertiesToUpdate() { method propertiesToUpdate (line 16334) | get propertiesToUpdate() { method #updateFontSize (line 16337) | #updateFontSize(fontSize) { method #updateColor (line 16355) | #updateColor(color) { method _translateEmpty (line 16370) | _translateEmpty(x, y) { method getInitialTranslation (line 16373) | getInitialTranslation() { method rebuild (line 16377) | rebuild() { method enableEditMode (line 16389) | enableEditMode() { method disableEditMode (line 16418) | disableEditMode() { method focusin (line 16436) | focusin(event) { method onceAdded (line 16445) | onceAdded(focus) { method isEmpty (line 16458) | isEmpty() { method remove (line 16461) | remove() { method #extractText (line 16469) | #extractText() { method #setEditorDimensions (line 16482) | #setEditorDimensions() { method commit (line 16511) | commit() { method shouldGetKeyboardEvents (line 16543) | shouldGetKeyboardEvents() { method enterInEditMode (line 16546) | enterInEditMode() { method dblclick (line 16550) | dblclick(event) { method keydown (line 16553) | keydown(event) { method editorDivKeydown (line 16559) | editorDivKeydown(event) { method editorDivFocus (line 16562) | editorDivFocus(event) { method editorDivBlur (line 16565) | editorDivBlur(event) { method editorDivInput (line 16568) | editorDivInput(event) { method disableEditing (line 16571) | disableEditing() { method enableEditing (line 16575) | enableEditing() { method render (line 16579) | render() { method #getNodeContent (line 16651) | static #getNodeContent(node) { method editorDivPaste (line 16654) | editorDivPaste(event) { method #setContent (line 16730) | #setContent() { method #serializeContent (line 16741) | #serializeContent() { method #deserializeContent (line 16744) | static #deserializeContent(content) { method contentDiv (line 16747) | get contentDiv() { method deserialize (line 16750) | static async deserialize(data, parent, uiManager) { method serialize (line 16797) | serialize(isForCopying = false) { method #hasElementChanged (line 16827) | #hasElementChanged(serialized) { method renderAnnotationElement (line 16836) | renderAnnotationElement(annotation) { method resetAnnotationElement (line 16859) | resetAnnotationElement(annotation) { class Outline (line 16867) | class Outline { method toSVGPath (line 16869) | toSVGPath() { method box (line 16872) | get box() { method serialize (line 16875) | serialize(_bbox, _rotation) { method _rescale (line 16878) | static _rescale(src, tx, ty, sx, sy, dest) { method _rescaleAndSwap (line 16886) | static _rescaleAndSwap(src, tx, ty, sx, sy, dest) { method _translate (line 16894) | static _translate(src, tx, ty, dest) { method svgRound (line 16902) | static svgRound(x) { method _normalizePoint (line 16905) | static _normalizePoint(x, y, parentWidth, parentHeight, rotation) { method _normalizePagePoint (line 16917) | static _normalizePagePoint(x, y, rotation) { method createBezierPoints (line 16929) | static createBezierPoints(x1, y1, x2, y2, x3, y3) { class FreeDrawOutliner (line 16937) | class FreeDrawOutliner { method constructor (line 16954) | constructor({ method isEmpty (line 16968) | isEmpty() { method #getLastCoords (line 16971) | #getLastCoords() { method add (line 16977) | add({ method toSVGPath (line 17035) | toSVGPath() { method #toSVGPathTwoPoints (line 17064) | #toSVGPathTwoPoints() { method #toSVGPathStart (line 17069) | #toSVGPathStart(buffer) { method #toSVGPathEnd (line 17073) | #toSVGPathEnd(buffer) { method newFreeDrawOutline (line 17080) | newFreeDrawOutline(outline, points, box, scaleFactor, innerMargin, isL... method getOutlines (line 17083) | getOutlines() { method #getOutlineTwoPoints (line 17124) | #getOutlineTwoPoints(points) { method #getOutlineStart (line 17132) | #getOutlineStart(outline, pos) { method #getOutlineEnd (line 17137) | #getOutlineEnd(outline, pos) { class FreeDrawOutline (line 17146) | class FreeDrawOutline extends Outline { method constructor (line 17154) | constructor(outline, points, box, scaleFactor, innerMargin, isLTR) { method toSVGPath (line 17174) | toSVGPath() { method serialize (line 17186) | serialize([blX, blY, trX, trY], rotation) { method #computeMinMax (line 17214) | #computeMinMax(isLTR) { method box (line 17254) | get box() { method newOutliner (line 17257) | newOutliner(point, box, scaleFactor, thickness, isLTR, innerMargin = 0) { method getNewOutline (line 17260) | getNewOutline(thickness, innerMargin) { class HighlightOutliner (line 17285) | class HighlightOutliner { method constructor (line 17290) | constructor(boxes, borderWidth = 0, innerMargin = 0, isLTR = true) { method getOutlines (line 17324) | getOutlines() { method #getOutlines (line 17338) | #getOutlines(outlineVerticalEdges) { method #binarySearch (line 17385) | #binarySearch(y) { method #insert (line 17403) | #insert([, y1, y2]) { method #remove (line 17407) | #remove([, y1, y2]) { method #breakEdge (line 17430) | #breakEdge(edge) { class HighlightOutline (line 17463) | class HighlightOutline extends Outline { method constructor (line 17466) | constructor(outlines, box, lastPoint) { method toSVGPath (line 17472) | toSVGPath() { method serialize (line 17492) | serialize([blX, blY, trX, trY], _rotation) { method box (line 17506) | get box() { method classNamesForOutlining (line 17509) | get classNamesForOutlining() { class FreeHighlightOutliner (line 17513) | class FreeHighlightOutliner extends FreeDrawOutliner { method newFreeDrawOutline (line 17514) | newFreeDrawOutline(outline, points, box, scaleFactor, innerMargin, isL... class FreeHighlightOutline (line 17518) | class FreeHighlightOutline extends FreeDrawOutline { method newOutliner (line 17519) | newOutliner(point, box, scaleFactor, thickness, isLTR, innerMargin = 0) { class ColorPicker (line 17528) | class ColorPicker { method _keyboardManager (line 17541) | static get _keyboardManager() { method constructor (line 17544) | constructor({ method renderButton (line 17567) | renderButton() { method renderMainDropdown (line 17587) | renderMainDropdown() { method #getDropdownRoot (line 17593) | #getDropdownRoot() { method #colorSelect (line 17626) | #colorSelect(color, event) { method _colorSelectFromKeyboard (line 17634) | _colorSelectFromKeyboard(event) { method _moveToNext (line 17645) | _moveToNext(event) { method _moveToPrevious (line 17656) | _moveToPrevious(event) { method _moveToBeginning (line 17668) | _moveToBeginning(event) { method _moveToEnd (line 17675) | _moveToEnd(event) { method #keyDown (line 17682) | #keyDown(event) { method #openDropdown (line 17685) | #openDropdown(event) { method #pointerDown (line 17704) | #pointerDown(event) { method hideDropdown (line 17710) | hideDropdown() { method #isDropdownVisible (line 17715) | get #isDropdownVisible() { method _hideDropdownFromKeyboard (line 17718) | _hideDropdownFromKeyboard() { method updateColor (line 17732) | updateColor(color) { method destroy (line 17744) | destroy() { class HighlightEditor (line 17761) | class HighlightEditor extends AnnotationEditor { method _keyboardManager (line 17788) | static get _keyboardManager() { method constructor (line 17800) | constructor(params) { method telemetryInitialData (line 17827) | get telemetryInitialData() { method telemetryFinalData (line 17836) | get telemetryFinalData() { method computeTelemetryFinalData (line 17842) | static computeTelemetryFinalData(data) { method #createOutlines (line 17847) | #createOutlines() { method #createFreeOutlines (line 17858) | #createFreeOutlines({ method initialize (line 17938) | static initialize(l10n, uiManager) { method updateDefaultParams (line 17942) | static updateDefaultParams(type, value) { method translateInPage (line 17952) | translateInPage(x, y) {} method toolbarPosition (line 17953) | get toolbarPosition() { method updateParams (line 17956) | updateParams(type, value) { method defaultPropertiesToUpdate (line 17966) | static get defaultPropertiesToUpdate() { method propertiesToUpdate (line 17969) | get propertiesToUpdate() { method #updateColor (line 17972) | #updateColor(color) { method #updateThickness (line 18000) | #updateThickness(thickness) { method addEditToolbar (line 18020) | async addEditToolbar() { method disableEditing (line 18033) | disableEditing() { method enableEditing (line 18037) | enableEditing() { method fixAndSetPosition (line 18041) | fixAndSetPosition() { method getBaseTranslation (line 18044) | getBaseTranslation() { method getRect (line 18047) | getRect(tx, ty) { method onceAdded (line 18050) | onceAdded(focus) { method remove (line 18058) | remove() { method rebuild (line 18065) | rebuild() { method setParent (line 18078) | setParent(parent) { method #changeThickness (line 18092) | #changeThickness(thickness) { method #cleanDrawLayer (line 18103) | #cleanDrawLayer() { method #addToDrawLayer (line 18112) | #addToDrawLayer(parent = this.parent) { method #rotateBbox (line 18148) | static #rotateBbox([x, y, width, height], angle) { method rotate (line 18159) | rotate(angle) { method render (line 18183) | render() { method pointerover (line 18210) | pointerover() { method pointerleave (line 18219) | pointerleave() { method #keydown (line 18228) | #keydown(event) { method _moveCaret (line 18231) | _moveCaret(direction) { method #setCaret (line 18244) | #setCaret(start) { method select (line 18255) | select() { method unselect (line 18267) | unselect() { method _mustFixPosition (line 18281) | get _mustFixPosition() { method show (line 18284) | show(visible = this._isVisible) { method #getRotation (line 18299) | #getRotation() { method #serializeBoxes (line 18302) | #serializeBoxes() { method #serializeOutlines (line 18327) | #serializeOutlines(rect) { method startHighlighting (line 18330) | static startHighlighting(parent, isLTR, { method #highlightMove (line 18387) | static #highlightMove(parent, event) { method #endHighlight (line 18396) | static #endHighlight(parent, event) { method deserialize (line 18411) | static async deserialize(data, parent, uiManager) { method serialize (line 18546) | serialize(isForCopying = false) { method #hasElementChanged (line 18573) | #hasElementChanged(serialized) { method renderAnnotationElement (line 18579) | renderAnnotationElement(annotation) { method canCreateNewEmptyEditor (line 18585) | static canCreateNewEmptyEditor() { class DrawingOptions (line 18594) | class DrawingOptions { method updateProperty (line 18596) | updateProperty(name, value) { method updateProperties (line 18600) | updateProperties(properties) { method updateSVGProperty (line 18610) | updateSVGProperty(name, value) { method toSVGProperties (line 18613) | toSVGProperties() { method reset (line 18620) | reset() { method updateAll (line 18623) | updateAll(options = this) { method clone (line 18626) | clone() { class DrawingEditor (line 18630) | class DrawingEditor extends AnnotationEditor { method constructor (line 18644) | constructor(params) { method _addOutlines (line 18649) | _addOutlines(params) { method #createDrawOutlines (line 18655) | #createDrawOutlines({ method #createDrawing (line 18670) | #createDrawing(drawOutlines, parent) { method _mergeSVGProperties (line 18676) | static _mergeSVGProperties(p1, p2) { method getDefaultDrawingOptions (line 18687) | static getDefaultDrawingOptions(_options) { method typesMap (line 18690) | static get typesMap() { method isDrawer (line 18693) | static get isDrawer() { method supportMultipleDrawings (line 18696) | static get supportMultipleDrawings() { method updateDefaultParams (line 18699) | static updateDefaultParams(type, value) { method updateParams (line 18709) | updateParams(type, value) { method defaultPropertiesToUpdate (line 18715) | static get defaultPropertiesToUpdate() { method propertiesToUpdate (line 18723) | get propertiesToUpdate() { method _updateProperty (line 18733) | _updateProperty(type, name, value) { method _onResizing (line 18754) | _onResizing() { method _onResized (line 18759) | _onResized() { method _onTranslating (line 18764) | _onTranslating(_x, _y) { method _onTranslated (line 18769) | _onTranslated() { method _onStartDragging (line 18774) | _onStartDragging() { method _onStopDragging (line 18781) | _onStopDragging() { method commit (line 18788) | commit() { method disableEditing (line 18793) | disableEditing() { method enableEditing (line 18797) | enableEditing() { method getBaseTranslation (line 18801) | getBaseTranslation() { method isResizable (line 18804) | get isResizable() { method onceAdded (line 18807) | onceAdded(focus) { method remove (line 18821) | remove() { method rebuild (line 18825) | rebuild() { method setParent (line 18839) | setParent(parent) { method #cleanDrawLayer (line 18854) | #cleanDrawLayer() { method #addToDrawLayer (line 18862) | #addToDrawLayer(parent = this.parent) { method #convertToParentSpace (line 18873) | #convertToParentSpace([x, y, width, height]) { method #convertToDrawSpace (line 18889) | #convertToDrawSpace() { method #updateBbox (line 18909) | #updateBbox(bbox) { method #rotateBox (line 18918) | #rotateBox() { method rotate (line 18963) | rotate() { method onScaleChanging (line 18971) | onScaleChanging() { method onScaleChangingWhenDrawing (line 18977) | static onScaleChangingWhenDrawing() {} method render (line 18978) | render() { method createDrawerInstance (line 19002) | static createDrawerInstance(_x, _y, _parentWidth, _parentHeight, _rota... method startDrawing (line 19005) | static startDrawing(parent, uiManager, _isLTR, event) { method _drawMove (line 19092) | static _drawMove(event) { method _cleanup (line 19113) | static _cleanup(all) { method _endDraw (line 19129) | static _endDraw(event) { method endDrawing (line 19157) | static endDrawing(isAborted) { method createDrawingOptions (line 19185) | createDrawingOptions(_data) {} method deserializeDraw (line 19186) | static deserializeDraw(_pageX, _pageY, _pageWidth, _pageHeight, _inner... method deserialize (line 19189) | static async deserialize(data, parent, uiManager) { method serializeDraw (line 19209) | serializeDraw(isForCopying) { method renderAnnotationElement (line 19214) | renderAnnotationElement(annotation) { method canCreateNewEmptyEditor (line 19220) | static canCreateNewEmptyEditor() { class InkDrawOutliner (line 19228) | class InkDrawOutliner { method constructor (line 19240) | constructor(x, y, parentWidth, parentHeight, rotation, thickness) { method updateProperty (line 19254) | updateProperty(name, value) { method #normalizePoint (line 19259) | #normalizePoint(x, y) { method isEmpty (line 19262) | isEmpty() { method isCancellable (line 19265) | isCancellable() { method add (line 19268) | add(x, y) { method end (line 19298) | end(x, y) { method startNew (line 19312) | startNew(x, y, parentWidth, parentHeight, rotation) { method getLastElement (line 19333) | getLastElement() { method setLastElement (line 19336) | setLastElement(element) { method removeLastElement (line 19350) | removeLastElement() { method toSVGPath (line 19372) | toSVGPath() { method getOutlines (line 19404) | getOutlines(parentWidth, parentHeight, scale, innerMargin) { method defaultSVGProperties (line 19415) | get defaultSVGProperties() { class InkDrawOutline (line 19427) | class InkDrawOutline extends Outline { method build (line 19437) | build(lines, parentWidth, parentHeight, parentScale, rotation, thickne... method thickness (line 19447) | get thickness() { method setLastElement (line 19450) | setLastElement(element) { method removeLastElement (line 19458) | removeLastElement() { method toSVGPath (line 19466) | toSVGPath() { method serialize (line 19487) | serialize([pageX, pageY, pageWidth, pageHeight], isForCopying) { method deserialize (line 19551) | static deserialize(pageX, pageY, pageWidth, pageHeight, innerMargin, { method #getMarginComponents (line 19625) | #getMarginComponents(thickness = this.#thickness) { method #getBBoxWithNoMargin (line 19629) | #getBBoxWithNoMargin() { method #computeBbox (line 19634) | #computeBbox() { method box (line 19662) | get box() { method updateProperty (line 19665) | updateProperty(name, value) { method #updateThickness (line 19671) | #updateThickness(thickness) { method updateParentDimensions (line 19683) | updateParentDimensions([width, height], scale) { method updateRotation (line 19698) | updateRotation(rotation) { method viewBox (line 19706) | get viewBox() { method defaultProperties (line 19709) | get defaultProperties() { method rotationTransform (line 19720) | get rotationTransform() { method getPathResizingSVGProperties (line 19750) | getPathResizingSVGProperties([newX, newY, newWidth, newHeight]) { method getPathResizedSVGProperties (line 19774) | getPathResizedSVGProperties([newX, newY, newWidth, newHeight]) { method getPathTranslatedSVGProperties (line 19827) | getPathTranslatedSVGProperties([newX, newY], parentDimensions) { method defaultSVGProperties (line 19867) | get defaultSVGProperties() { class InkDrawingOptions (line 19892) | class InkDrawingOptions extends DrawingOptions { method constructor (line 19893) | constructor(viewerParameters) { method updateSVGProperty (line 19906) | updateSVGProperty(name, value) { method clone (line 19913) | clone() { class InkEditor (line 19919) | class InkEditor extends DrawingEditor { method constructor (line 19923) | constructor(params) { method initialize (line 19931) | static initialize(l10n, uiManager) { method getDefaultDrawingOptions (line 19935) | static getDefaultDrawingOptions(options) { method supportMultipleDrawings (line 19940) | static get supportMultipleDrawings() { method typesMap (line 19943) | static get typesMap() { method createDrawerInstance (line 19946) | static createDrawerInstance(x, y, parentWidth, parentHeight, rotation) { method deserializeDraw (line 19949) | static deserializeDraw(pageX, pageY, pageWidth, pageHeight, innerMargi... method deserialize (line 19952) | static async deserialize(data, parent, uiManager) { method onScaleChanging (line 19996) | onScaleChanging() { method onScaleChangingWhenDrawing (line 20009) | static onScaleChangingWhenDrawing() { method createDrawingOptions (line 20018) | createDrawingOptions({ method serialize (line 20029) | serialize(isForCopying = false) { method #hasElementChanged (line 20072) | #hasElementChanged(serialized) { method renderAnnotationElement (line 20081) | renderAnnotationElement(annotation) { class ContourDrawOutline (line 20097) | class ContourDrawOutline extends InkDrawOutline { method toSVGPath (line 20098) | toSVGPath() { constant BASE_HEADER_LENGTH (line 20112) | const BASE_HEADER_LENGTH = 8; constant POINTS_PROPERTIES_NUMBER (line 20113) | const POINTS_PROPERTIES_NUMBER = 3; class SignatureExtractor (line 20114) | class SignatureExtractor { method #neighborIndexToId (line 20121) | static #neighborIndexToId(i0, j0, i, j) { method #clockwiseNonZero (line 20133) | static #clockwiseNonZero(buf, width, i0, j0, i, j, offset) { method #counterClockwiseNonZero (line 20145) | static #counterClockwiseNonZero(buf, width, i0, j0, i, j, offset) { method #findContours (line 20157) | static #findContours(buf, width, height, threshold) { method #douglasPeuckerHelper (line 20265) | static #douglasPeuckerHelper(points, start, end, output) { method #douglasPeucker (line 20304) | static #douglasPeucker(points) { method #bilateralFilter (line 20311) | static #bilateralFilter(buf, width, height, sigmaS, sigmaR, kernelSize) { method #getHistogram (line 20357) | static #getHistogram(buf) { method #toUint8 (line 20364) | static #toUint8(buf) { method #guessThreshold (line 20389) | static #guessThreshold(histogram) { method #getGrayPixels (line 20414) | static #getGrayPixels(bitmap) { method extractContoursFromText (line 20464) | static extractContoursFromText(text, { method process (line 20516) | static process(bitmap, pageWidth, pageHeight, rotation, innerMargin) { method processDrawnLines (line 20535) | static processDrawnLines({ method compressSignature (line 20607) | static async compressSignature({ method decompressSignature (line 20667) | static async decompressSignature(signatureData) { class SignatureOptions (line 20746) | class SignatureOptions extends DrawingOptions { method constructor (line 20747) | constructor() { method clone (line 20754) | clone() { class DrawnSignatureOptions (line 20760) | class DrawnSignatureOptions extends InkDrawingOptions { method constructor (line 20761) | constructor(viewerParameters) { method clone (line 20768) | clone() { class SignatureEditor (line 20774) | class SignatureEditor extends DrawingEditor { method constructor (line 20782) | constructor(params) { method initialize (line 20793) | static initialize(l10n, uiManager) { method getDefaultDrawingOptions (line 20798) | static getDefaultDrawingOptions(options) { method supportMultipleDrawings (line 20803) | static get supportMultipleDrawings() { method typesMap (line 20806) | static get typesMap() { method isDrawer (line 20809) | static get isDrawer() { method telemetryFinalData (line 20812) | get telemetryFinalData() { method computeTelemetryFinalData (line 20818) | static computeTelemetryFinalData(data) { method isResizable (line 20825) | get isResizable() { method onScaleChanging (line 20828) | onScaleChanging() { method render (line 20834) | render() { method setUuid (line 20889) | setUuid(uuid) { method getUuid (line 20893) | getUuid() { method description (line 20896) | get description() { method description (line 20899) | set description(description) { method getSignaturePreview (line 20905) | getSignaturePreview() { method addEditToolbar (line 20935) | async addEditToolbar() { method addSignature (line 20946) | addSignature(data, heightInPage, description, uuid) { method getFromImage (line 21000) | getFromImage(bitmap) { method getFromText (line 21010) | getFromText(text, fontInfo) { method getDrawnSignature (line 21020) | getDrawnSignature(curves) { method createDrawingOptions (line 21038) | createDrawingOptions({ method serialize (line 21051) | serialize(isForCopying = false) { method deserializeDraw (line 21094) | static deserializeDraw(pageX, pageY, pageWidth, pageHeight, innerMargi... method deserialize (line 21100) | static async deserialize(data, parent, uiManager) { class StampEditor (line 21114) | class StampEditor extends AnnotationEditor { method constructor (line 21128) | constructor(params) { method initialize (line 21137) | static initialize(l10n, uiManager) { method isHandlingMimeForPasting (line 21140) | static isHandlingMimeForPasting(mime) { method paste (line 21143) | static paste(item, parent) { method altTextFinish (line 21148) | altTextFinish() { method telemetryFinalData (line 21154) | get telemetryFinalData() { method computeTelemetryFinalData (line 21160) | static computeTelemetryFinalData(data) { method #getBitmapFetched (line 21167) | #getBitmapFetched(data, fromId = false) { method #getBitmapDone (line 21182) | #getBitmapDone() { method mlGuessAltText (line 21207) | async mlGuessAltText(imageData = null, updateAltTextData = true) { method #getBitmap (line 21256) | #getBitmap() { method remove (line 21308) | remove() { method rebuild (line 21321) | rebuild() { method onceAdded (line 21339) | onceAdded(focus) { method isEmpty (line 21345) | isEmpty() { method isResizable (line 21348) | get isResizable() { method render (line 21351) | render() { method setCanvas (line 21376) | setCanvas(annotationElementId, canvas) { method _onResized (line 21391) | _onResized() { method onScaleChanging (line 21394) | onScaleChanging() { method #createCanvas (line 21407) | #createCanvas() { method copyCanvas (line 21454) | copyCanvas(maxDataDimension, maxPreviewDimension, createImageData = fa... method #scaleBitmap (line 21538) | #scaleBitmap(width, height) { method #drawBitmap (line 21562) | #drawBitmap() { method #serializeBitmap (line 21582) | #serializeBitmap(toUrl) { method deserialize (line 21610) | static async deserialize(data, parent, uiManager) { method serialize (line 21693) | serialize(isForCopying = false, context = null) { method #hasElementChanged (line 21758) | #hasElementChanged(serialized) { method renderAnnotationElement (line 21772) | renderAnnotationElement(annotation) { class AnnotationEditorLayer (line 21789) | class AnnotationEditorLayer { method constructor (line 21806) | constructor({ method isEmpty (line 21837) | get isEmpty() { method isInvisible (line 21840) | get isInvisible() { method updateToolbar (line 21843) | updateToolbar(mode) { method updateMode (line 21846) | updateMode(mode = this.#uiManager.getMode()) { method hasTextLayer (line 21879) | hasTextLayer(textLayer) { method setEditingState (line 21882) | setEditingState(isEditing) { method addCommands (line 21885) | addCommands(params) { method cleanUndoStack (line 21888) | cleanUndoStack(type) { method toggleDrawing (line 21891) | toggleDrawing(enabled = false) { method togglePointerEvents (line 21894) | togglePointerEvents(enabled = false) { method toggleAnnotationLayerPointerEvents (line 21897) | toggleAnnotationLayerPointerEvents(enabled = false) { method enable (line 21900) | async enable() { method disable (line 21935) | disable() { method getEditableAnnotation (line 21995) | getEditableAnnotation(id) { method setActiveEditor (line 21998) | setActiveEditor(editor) { method enableTextSelection (line 22005) | enableTextSelection() { method disableTextSelection (line 22016) | disableTextSelection() { method #textLayerPointerDown (line 22024) | #textLayerPointerDown(event) { method enableClick (line 22054) | enableClick() { method disableClick (line 22071) | disableClick() { method attach (line 22075) | attach(editor) { method detach (line 22084) | detach(editor) { method remove (line 22091) | remove(editor) { method changeParent (line 22097) | changeParent(editor) { method add (line 22114) | add(editor) { method moveEditorInDOM (line 22131) | moveEditorInDOM(editor) { method addOrRebuild (line 22157) | addOrRebuild(editor) { method addUndoableEditor (line 22166) | addUndoableEditor(editor) { method getNextId (line 22177) | getNextId() { method #currentEditorType (line 22180) | get #currentEditorType() { method combinedSignal (line 22183) | combinedSignal(ac) { method #createNewEditor (line 22186) | #createNewEditor(params) { method canCreateNewEmptyEditor (line 22190) | canCreateNewEmptyEditor() { method pasteEditor (line 22193) | async pasteEditor(mode, params) { method deserialize (line 22214) | async deserialize(data) { method createAndAddNewEditor (line 22217) | createAndAddNewEditor(event, isCentered, data = {}) { method #getCenterPoint (line 22233) | #getCenterPoint() { method addNewEditor (line 22252) | addNewEditor(data = {}) { method setSelected (line 22255) | setSelected(editor) { method toggleSelected (line 22258) | toggleSelected(editor) { method unselect (line 22261) | unselect(editor) { method pointerup (line 22264) | pointerup(event) { method pointerdown (line 22292) | pointerdown(event) { method startDrawingSession (line 22317) | startDrawingSession(event) { method pause (line 22340) | pause(on) { method endDrawingSession (line 22357) | endDrawingSession(isAborted = false) { method findNewParent (line 22367) | findNewParent(editor, x, y) { method commitOrRemove (line 22375) | commitOrRemove() { method onScaleChanging (line 22382) | onScaleChanging() { method destroy (line 22388) | destroy() { method #cleanup (line 22408) | #cleanup() { method render (line 22415) | render({ method update (line 22426) | update({ method pageDimensions (line 22443) | get pageDimensions() { method scale (line 22450) | get scale() { class DrawLayer (line 22458) | class DrawLayer { method constructor (line 22463) | constructor({ method setParent (line 22468) | setParent(parent) { method _svgFactory (line 22483) | static get _svgFactory() { method #setBox (line 22486) | static #setBox(element, [x, y, width, height]) { method #createSVG (line 22495) | #createSVG() { method #createClipPath (line 22501) | #createClipPath(defs, pathId) { method #updateProperties (line 22513) | #updateProperties(element, properties) { method draw (line 22522) | draw(properties, isPathUpdatable = false, hasClip = false) { method drawOutline (line 22546) | drawOutline(properties, mustRemoveSelfIntersections) { method finalizeDraw (line 22590) | finalizeDraw(id, properties) { method updateProperties (line 22594) | updateProperties(elementOrId, properties) { method updateParent (line 22628) | updateParent(id, layer) { method remove (line 22640) | remove(id) { method destroy (line 22648) | destroy() { FILE: cookbook/static/pdfjs/web/pdf.sandbox.mjs function D (line 53) | function D(){var a=x.buffer;d.HEAP8=z=new Int8Array(a);d.HEAP16=new Int1... function ba (line 53) | function ba(){var a=d.preRun.shift();E.unshift(a);} function w (line 53) | function w(a){d.onAbort?.(a);a="Aborted("+a+")";u(a);y=!0;a=new WebAssem... function ca (line 53) | function ca(){var a=L;return Promise.resolve().then(()=>{if(a==L&&v)var ... function da (line 53) | function da(a,b){return ca().then(c=>WebAssembly.instantiate(c,a)).then(... function ea (line 53) | function ea(a,b){return da(a,b);} function U (line 53) | function U(){} function e (line 53) | function e(t){return(t=t.toTimeString().match(/\(([A-Za-z ]+)\)$/))?t[1]... function a (line 53) | function a(c){X=c.exports;x=X.m;D();F.unshift(X.n);H--;d.monitorRunDepen... function na (line 53) | function na(){function a(){if(!Z&&(Z=!0,d.calledRun=!0,!y)){N(F);k(d);if... class SandboxSupportBase (line 55) | class SandboxSupportBase { method constructor (line 56) | constructor(win) { method destroy (line 61) | destroy() { method exportValueToSandbox (line 68) | exportValueToSandbox(val) { method importValueFromSandbox (line 71) | importValueFromSandbox(val) { method createErrorForSandbox (line 74) | createErrorForSandbox(errorMessage) { method callSandboxFunction (line 77) | callSandboxFunction(name, args) { method createSandboxExternals (line 88) | createSandboxExternals() { class SandboxSupport (line 175) | class SandboxSupport extends SandboxSupportBase { method exportValueToSandbox (line 176) | exportValueToSandbox(val) { method importValueFromSandbox (line 179) | importValueFromSandbox(val) { method createErrorForSandbox (line 182) | createErrorForSandbox(errorMessage) { class Sandbox (line 186) | class Sandbox { method constructor (line 187) | constructor(win, module) { method create (line 193) | create(data) { method dispatchEvent (line 217) | dispatchEvent(event) { method dumpMemoryUse (line 220) | dumpMemoryUse() { method nukeSandbox (line 223) | nukeSandbox() { method evalForTesting (line 231) | evalForTesting(code, key) { function QuickJSSandbox (line 235) | function QuickJSSandbox() { FILE: cookbook/static/pdfjs/web/pdf.worker.mjs constant IDENTITY_MATRIX (line 54) | const IDENTITY_MATRIX = [1, 0, 0, 1, 0, 0]; constant FONT_IDENTITY_MATRIX (line 55) | const FONT_IDENTITY_MATRIX = [0.001, 0, 0, 0.001, 0, 0]; constant LINE_FACTOR (line 56) | const LINE_FACTOR = 1.35; constant LINE_DESCENT_FACTOR (line 57) | const LINE_DESCENT_FACTOR = 0.35; constant BASELINE_FACTOR (line 58) | const BASELINE_FACTOR = LINE_DESCENT_FACTOR / LINE_FACTOR; constant OPS (line 233) | const OPS = { function setVerbosityLevel (line 336) | function setVerbosityLevel(level) { function getVerbosityLevel (line 341) | function getVerbosityLevel() { function info (line 344) | function info(msg) { function warn (line 349) | function warn(msg) { function unreachable (line 354) | function unreachable(msg) { function assert (line 357) | function assert(cond, msg) { function _isValidProtocol (line 362) | function _isValidProtocol(url) { function createValidAbsoluteUrl (line 374) | function createValidAbsoluteUrl(url, baseUrl = null, options = null) { function shadow (line 394) | function shadow(obj, prop, value, nonSerializable = false) { function BaseException (line 404) | function BaseException(message, name) { class PasswordException (line 412) | class PasswordException extends BaseException { method constructor (line 413) | constructor(msg, code) { class UnknownErrorException (line 418) | class UnknownErrorException extends BaseException { method constructor (line 419) | constructor(msg, details) { class InvalidPDFException (line 424) | class InvalidPDFException extends BaseException { method constructor (line 425) | constructor(msg) { class ResponseException (line 429) | class ResponseException extends BaseException { method constructor (line 430) | constructor(msg, status, missing) { class FormatError (line 436) | class FormatError extends BaseException { method constructor (line 437) | constructor(msg) { class AbortException (line 441) | class AbortException extends BaseException { method constructor (line 442) | constructor(msg) { function bytesToString (line 446) | function bytesToString(bytes) { function stringToBytes (line 463) | function stringToBytes(str) { function string32 (line 474) | function string32(value) { function objectSize (line 477) | function objectSize(obj) { function objectFromMap (line 480) | function objectFromMap(map) { function isLittleEndian (line 487) | function isLittleEndian() { function isEvalSupported (line 493) | function isEvalSupported() { class FeatureTest (line 501) | class FeatureTest { method isLittleEndian (line 502) | static get isLittleEndian() { method isEvalSupported (line 505) | static get isEvalSupported() { method isOffscreenCanvasSupported (line 508) | static get isOffscreenCanvasSupported() { method isImageDecoderSupported (line 511) | static get isImageDecoderSupported() { method platform (line 514) | static get platform() { method isCSSRoundSupported (line 536) | static get isCSSRoundSupported() { class Util (line 541) | class Util { method makeHexColor (line 542) | static makeHexColor(r, g, b) { method transform (line 545) | static transform(m1, m2) { method applyTransform (line 548) | static applyTransform(p, m) { method applyInverseTransform (line 553) | static applyInverseTransform(p, m) { method getAxialAlignedBoundingBox (line 559) | static getAxialAlignedBoundingBox(r, m) { method inverseTransform (line 566) | static inverseTransform(m) { method singularValueDecompose2dScale (line 570) | static singularValueDecompose2dScale(m) { method normalizeRect (line 582) | static normalizeRect(rect) { method intersect (line 594) | static intersect(rect1, rect2) { method pointBoundingBox (line 607) | static pointBoundingBox(x, y, minMax) { method rectBoundingBox (line 613) | static rectBoundingBox(x0, y0, x1, y1, minMax) { method #getExtremumOnCurve (line 619) | static #getExtremumOnCurve(x0, x1, x2, x3, y0, y1, y2, y3, t, minMax) { method #getExtremum (line 633) | static #getExtremum(x0, x1, x2, x3, y0, y1, y2, y3, a, b, c, minMax) { method bezierBoundingBox (line 649) | static bezierBoundingBox(x0, y0, x1, y1, x2, y2, x3, y3, minMax) { function stringToPDFString (line 659) | function stringToPDFString(str) { function stringToUTF8String (line 703) | function stringToUTF8String(str) { function utf8StringToString (line 706) | function utf8StringToString(str) { function isArrayEqual (line 709) | function isArrayEqual(arr1, arr2) { function getModificationDate (line 720) | function getModificationDate(date = new Date()) { function normalizeUnicode (line 726) | function normalizeUnicode(str) { function getUuid (line 733) | function getUuid() { function _isValidExplicitDest (line 742) | function _isValidExplicitDest(validRef, validName, dest) { function MathClamp (line 789) | function MathClamp(v, min, max) { function toHexUtil (line 792) | function toHexUtil(arr) { function toBase64Util (line 798) | function toBase64Util(arr) { function fromBase64Util (line 804) | function fromBase64Util(str) { constant CIRCULAR_REF (line 825) | const CIRCULAR_REF = Symbol("CIRCULAR_REF"); constant EOF (line 826) | const EOF = Symbol("EOF"); function clearPrimitiveCaches (line 830) | function clearPrimitiveCaches() { class Name (line 835) | class Name { method constructor (line 836) | constructor(name) { method get (line 839) | static get(name) { class Cmd (line 843) | class Cmd { method constructor (line 844) | constructor(cmd) { method get (line 847) | static get(cmd) { class Dict (line 854) | class Dict { method constructor (line 855) | constructor(xref = null) { method assignXref (line 862) | assignXref(newXref) { method size (line 865) | get size() { method get (line 868) | get(key1, key2, key3) { method getAsync (line 881) | async getAsync(key1, key2, key3) { method getArray (line 894) | getArray(key1, key2, key3) { method getRaw (line 915) | getRaw(key) { method getKeys (line 918) | getKeys() { method getRawValues (line 921) | getRawValues() { method set (line 924) | set(key, value) { method has (line 927) | has(key) { method empty (line 935) | static get empty() { method merge (line 942) | static merge({ method clone (line 984) | clone() { method delete (line 991) | delete(key) { method [Symbol.iterator] (line 930) | *[Symbol.iterator]() { class Ref (line 995) | class Ref { method constructor (line 996) | constructor(num, gen) { method toString (line 1000) | toString() { method fromString (line 1006) | static fromString(str) { method get (line 1017) | static get(num, gen) { class RefSet (line 1022) | class RefSet { method constructor (line 1023) | constructor(parent = null) { method has (line 1026) | has(ref) { method put (line 1029) | put(ref) { method remove (line 1032) | remove(ref) { method clear (line 1038) | clear() { method [Symbol.iterator] (line 1035) | [Symbol.iterator]() { class RefSetCache (line 1042) | class RefSetCache { method constructor (line 1043) | constructor() { method size (line 1046) | get size() { method get (line 1049) | get(ref) { method has (line 1052) | has(ref) { method put (line 1055) | put(ref, obj) { method putAlias (line 1058) | putAlias(ref, aliasRef) { method clear (line 1064) | clear() { method values (line 1067) | *values() { method items (line 1070) | *items() { method [Symbol.iterator] (line 1061) | [Symbol.iterator]() { function isName (line 1076) | function isName(v, name) { function isCmd (line 1079) | function isCmd(v, cmd) { function isDict (line 1082) | function isDict(v, type) { function isRefsEqual (line 1085) | function isRefsEqual(v1, v2) { class BaseStream (line 1091) | class BaseStream { method length (line 1092) | get length() { method isEmpty (line 1095) | get isEmpty() { method isDataLoaded (line 1098) | get isDataLoaded() { method getByte (line 1101) | getByte() { method getBytes (line 1104) | getBytes(length) { method getImageData (line 1107) | async getImageData(length, decoderOptions) { method asyncGetBytes (line 1110) | async asyncGetBytes() { method isAsync (line 1113) | get isAsync() { method isAsyncDecoder (line 1116) | get isAsyncDecoder() { method canAsyncDecodeImageFromBuffer (line 1119) | get canAsyncDecodeImageFromBuffer() { method getTransferableImage (line 1122) | async getTransferableImage() { method peekByte (line 1125) | peekByte() { method peekBytes (line 1132) | peekBytes(length) { method getUint16 (line 1137) | getUint16() { method getInt32 (line 1145) | getInt32() { method getByteRange (line 1152) | getByteRange(begin, end) { method getString (line 1155) | getString(length) { method skip (line 1158) | skip(n) { method reset (line 1161) | reset() { method moveStart (line 1164) | moveStart() { method makeSubStream (line 1167) | makeSubStream(start, length, dict = null) { method getBaseStreams (line 1170) | getBaseStreams() { constant PDF_VERSION_REGEXP (line 1179) | const PDF_VERSION_REGEXP = /^[1-9]\.\d$/; constant MAX_INT_32 (line 1180) | const MAX_INT_32 = 2 ** 31 - 1; constant MIN_INT_32 (line 1181) | const MIN_INT_32 = -(2 ** 31); function getLookupTableFactory (line 1182) | function getLookupTableFactory(initializer) { class MissingDataException (line 1193) | class MissingDataException extends BaseException { method constructor (line 1194) | constructor(begin, end) { class ParserEOFException (line 1200) | class ParserEOFException extends BaseException { method constructor (line 1201) | constructor(msg) { class XRefEntryException (line 1205) | class XRefEntryException extends BaseException { method constructor (line 1206) | constructor(msg) { class XRefParseException (line 1210) | class XRefParseException extends BaseException { method constructor (line 1211) | constructor(msg) { function arrayBuffersToBytes (line 1215) | function arrayBuffersToBytes(arr) { function fetchBinaryData (line 1236) | async function fetchBinaryData(url) { function getInheritableProperty (line 1243) | function getInheritableProperty({ function getParentToUpdate (line 1266) | function getParentToUpdate(dict, ref, xref) { constant ROMAN_NUMBER_MAP (line 1290) | const ROMAN_NUMBER_MAP = ["", "C", "CC", "CCC", "CD", "D", "DC", "DCC", ... function toRomanNumerals (line 1291) | function toRomanNumerals(number, lowerCase = false) { function log2 (line 1296) | function log2(x) { function readInt8 (line 1299) | function readInt8(data, offset) { function readInt16 (line 1302) | function readInt16(data, offset) { function readUint16 (line 1305) | function readUint16(data, offset) { function readUint32 (line 1308) | function readUint32(data, offset) { function isWhiteSpace (line 1311) | function isWhiteSpace(ch) { function isBooleanArray (line 1314) | function isBooleanArray(arr, len) { function isNumberArray (line 1317) | function isNumberArray(arr, len) { function lookupMatrix (line 1323) | function lookupMatrix(arr, fallback) { function lookupRect (line 1326) | function lookupRect(arr, fallback) { function lookupNormalRect (line 1329) | function lookupNormalRect(arr, fallback) { function parseXFAPath (line 1332) | function parseXFAPath(path) { function escapePDFName (line 1348) | function escapePDFName(str) { function escapeString (line 1369) | function escapeString(str) { function _collectJS (line 1379) | function _collectJS(entry, xref, list, parents) { function collectActions (line 1416) | function collectActions(xref, dict, eventType) { function encodeToXmlString (line 1471) | function encodeToXmlString(str) { function validateFontName (line 1504) | function validateFontName(fontFamily, mustWarn = false) { function validateCSSFont (line 1526) | function validateCSSFont(cssFontInfo) { function recoverJsURL (line 1544) | function recoverJsURL(str) { function numberToString (line 1556) | function numberToString(value) { function getNewAnnotationsMap (line 1569) | function getNewAnnotationsMap(annotationStorage) { function stringToAsciiOrUTF16BE (line 1587) | function stringToAsciiOrUTF16BE(str) { function isAscii (line 1590) | function isAscii(str) { function stringToUTF16HexString (line 1593) | function stringToUTF16HexString(str) { function stringToUTF16String (line 1601) | function stringToUTF16String(str, bigEndian = false) { function getRotationMatrix (line 1612) | function getRotationMatrix(rotation, width, height) { function getSizeInBytes (line 1624) | function getSizeInBytes(x) { class QCMS (line 1629) | class QCMS { function copy_result (line 1634) | function copy_result(ptr, len) { function copy_rgb (line 1660) | function copy_rgb(ptr) { function getUint8ArrayMemory0 (line 1680) | function getUint8ArrayMemory0() { function getStringFromWasm0 (line 1686) | function getStringFromWasm0(ptr, len) { constant WASM_VECTOR_LEN (line 1690) | let WASM_VECTOR_LEN = 0; function passArray8ToWasm0 (line 1691) | function passArray8ToWasm0(arg, malloc) { function qcms_convert_array (line 1697) | function qcms_convert_array(transformer, src) { function qcms_convert_one (line 1702) | function qcms_convert_one(transformer, src) { function qcms_convert_three (line 1705) | function qcms_convert_three(transformer, src1, src2, src3) { function qcms_convert_four (line 1708) | function qcms_convert_four(transformer, src1, src2, src3, src4) { function qcms_transformer_from_memory (line 1711) | function qcms_transformer_from_memory(mem, in_type, intent) { function qcms_drop_transformer (line 1717) | function qcms_drop_transformer(transformer) { function __wbg_load (line 1744) | async function __wbg_load(module, imports) { function __wbg_get_imports (line 1771) | function __wbg_get_imports() { function __wbg_init_memory (line 1794) | function __wbg_init_memory(imports, memory) {} function __wbg_finalize_init (line 1795) | function __wbg_finalize_init(instance, module) { function initSync (line 1802) | function initSync(module) { function __wbg_init (line 1821) | async function __wbg_init(module_or_path) { function resizeRgbImage (line 1851) | function resizeRgbImage(src, dest, w1, h1, w2, h2, alpha01) { function resizeRgbaImage (line 1874) | function resizeRgbaImage(src, dest, w1, h1, w2, h2, alpha01) { function copyRgbaImage (line 1909) | function copyRgbaImage(src, dest, alpha01) { class ColorSpace (line 1926) | class ColorSpace { method constructor (line 1927) | constructor(name, numComps) { method getRgb (line 1931) | getRgb(src, srcOffset) { method getRgbItem (line 1936) | getRgbItem(src, srcOffset, dest, destOffset) { method getRgbBuffer (line 1939) | getRgbBuffer(src, srcOffset, count, dest, destOffset, bits, alpha01) { method getOutputLength (line 1942) | getOutputLength(inputLength, alpha01) { method isPassthrough (line 1945) | isPassthrough(bits) { method isDefaultDecode (line 1948) | isDefaultDecode(decodeMap, bpc) { method fillRgb (line 1951) | fillRgb(dest, originalWidth, originalHeight, width, height, actualHeig... method usesZeroToOneRange (line 2005) | get usesZeroToOneRange() { method isDefaultDecode (line 2008) | static isDefaultDecode(decode, numComps) { class AlternateCS (line 2024) | class AlternateCS extends ColorSpace { method constructor (line 2025) | constructor(numComps, base, tintFn) { method getRgbItem (line 2031) | getRgbItem(src, srcOffset, dest, destOffset) { method getRgbBuffer (line 2036) | getRgbBuffer(src, srcOffset, count, dest, destOffset, bits, alpha01) { method getOutputLength (line 2067) | getOutputLength(inputLength, alpha01) { class PatternCS (line 2071) | class PatternCS extends ColorSpace { method constructor (line 2072) | constructor(baseCS) { method isDefaultDecode (line 2076) | isDefaultDecode(decodeMap, bpc) { class IndexedCS (line 2080) | class IndexedCS extends ColorSpace { method constructor (line 2081) | constructor(base, highVal, lookup) { method getRgbItem (line 2097) | getRgbItem(src, srcOffset, dest, destOffset) { method getRgbBuffer (line 2102) | getRgbBuffer(src, srcOffset, count, dest, destOffset, bits, alpha01) { method getOutputLength (line 2113) | getOutputLength(inputLength, alpha01) { method isDefaultDecode (line 2116) | isDefaultDecode(decodeMap, bpc) { class DeviceGrayCS (line 2131) | class DeviceGrayCS extends ColorSpace { method constructor (line 2132) | constructor() { method getRgbItem (line 2135) | getRgbItem(src, srcOffset, dest, destOffset) { method getRgbBuffer (line 2139) | getRgbBuffer(src, srcOffset, count, dest, destOffset, bits, alpha01) { method getOutputLength (line 2151) | getOutputLength(inputLength, alpha01) { class DeviceRgbCS (line 2155) | class DeviceRgbCS extends ColorSpace { method constructor (line 2156) | constructor() { method getRgbItem (line 2159) | getRgbItem(src, srcOffset, dest, destOffset) { method getRgbBuffer (line 2164) | getRgbBuffer(src, srcOffset, count, dest, destOffset, bits, alpha01) { method getOutputLength (line 2179) | getOutputLength(inputLength, alpha01) { method isPassthrough (line 2182) | isPassthrough(bits) { class DeviceRgbaCS (line 2186) | class DeviceRgbaCS extends ColorSpace { method constructor (line 2187) | constructor() { method getOutputLength (line 2190) | getOutputLength(inputLength, _alpha01) { method isPassthrough (line 2193) | isPassthrough(bits) { method fillRgb (line 2196) | fillRgb(dest, originalWidth, originalHeight, width, height, actualHeig... class DeviceCmykCS (line 2204) | class DeviceCmykCS extends ColorSpace { method constructor (line 2205) | constructor() { method #toRgb (line 2208) | #toRgb(src, srcOffset, srcScale, dest, destOffset) { method getRgbItem (line 2217) | getRgbItem(src, srcOffset, dest, destOffset) { method getRgbBuffer (line 2220) | getRgbBuffer(src, srcOffset, count, dest, destOffset, bits, alpha01) { method getOutputLength (line 2228) | getOutputLength(inputLength, alpha01) { class CalGrayCS (line 2232) | class CalGrayCS extends ColorSpace { method constructor (line 2233) | constructor(whitePoint, blackPoint, gamma) { method #toRgb (line 2256) | #toRgb(src, srcOffset, dest, destOffset, scale) { method getRgbItem (line 2265) | getRgbItem(src, srcOffset, dest, destOffset) { method getRgbBuffer (line 2268) | getRgbBuffer(src, srcOffset, count, dest, destOffset, bits, alpha01) { method getOutputLength (line 2276) | getOutputLength(inputLength, alpha01) { class CalRGBCS (line 2280) | class CalRGBCS extends ColorSpace { method constructor (line 2289) | constructor(whitePoint, blackPoint, gamma, matrix) { method #matrixProduct (line 2310) | #matrixProduct(a, b, result) { method #toFlat (line 2315) | #toFlat(sourceWhitePoint, LMS, result) { method #toD65 (line 2320) | #toD65(sourceWhitePoint, LMS, result) { method #sRGBTransferFunction (line 2328) | #sRGBTransferFunction(color) { method #decodeL (line 2337) | #decodeL(L) { method #compensateBlackPoint (line 2346) | #compensateBlackPoint(sourceBlackPoint, XYZ_Flat, result) { method #normalizeWhitePointToFlat (line 2370) | #normalizeWhitePointToFlat(sourceWhitePoint, XYZ_In, result) { method #normalizeWhitePointToD65 (line 2383) | #normalizeWhitePointToD65(sourceWhitePoint, XYZ_In, result) { method #toRgb (line 2390) | #toRgb(src, srcOffset, dest, destOffset, scale) { method getRgbItem (line 2416) | getRgbItem(src, srcOffset, dest, destOffset) { method getRgbBuffer (line 2419) | getRgbBuffer(src, srcOffset, count, dest, destOffset, bits, alpha01) { method getOutputLength (line 2427) | getOutputLength(inputLength, alpha01) { class LabCS (line 2431) | class LabCS extends ColorSpace { method constructor (line 2432) | constructor(whitePoint, blackPoint, range) { method #fn_g (line 2455) | #fn_g(x) { method #decode (line 2458) | #decode(value, high1, low2, high2) { method #toRgb (line 2461) | #toRgb(src, srcOffset, maxVal, dest, destOffset) { method getRgbItem (line 2500) | getRgbItem(src, srcOffset, dest, destOffset) { method getRgbBuffer (line 2503) | getRgbBuffer(src, srcOffset, count, dest, destOffset, bits, alpha01) { method getOutputLength (line 2511) | getOutputLength(inputLength, alpha01) { method isDefaultDecode (line 2514) | isDefaultDecode(decodeMap, bpc) { method usesZeroToOneRange (line 2517) | get usesZeroToOneRange() { function fetchSync (line 2527) | function fetchSync(url) { class IccColorSpace (line 2534) | class IccColorSpace extends ColorSpace { method constructor (line 2542) | constructor(iccProfile, name, numComps) { method getRgbItem (line 2570) | getRgbItem(src, srcOffset, dest, destOffset) { method getRgbBuffer (line 2575) | getRgbBuffer(src, srcOffset, count, dest, destOffset, bits, alpha01) { method getOutputLength (line 2589) | getOutputLength(inputLength, alpha01) { method setOptions (line 2592) | static setOptions({ method isUsable (line 2604) | static get isUsable() { class CmykICCBasedCS (line 2623) | class CmykICCBasedCS extends IccColorSpace { method constructor (line 2625) | constructor() { method setOptions (line 2629) | static setOptions({ method isUsable (line 2634) | static get isUsable() { class Stream (line 2650) | class Stream extends BaseStream { method constructor (line 2651) | constructor(arrayBuffer, start, length, dict) { method length (line 2659) | get length() { method isEmpty (line 2662) | get isEmpty() { method getByte (line 2665) | getByte() { method getBytes (line 2671) | getBytes(length) { method getByteRange (line 2685) | getByteRange(begin, end) { method reset (line 2694) | reset() { method moveStart (line 2697) | moveStart() { method makeSubStream (line 2700) | makeSubStream(start, length, dict = null) { class StringStream (line 2704) | class StringStream extends Stream { method constructor (line 2705) | constructor(str) { class NullStream (line 2709) | class NullStream extends Stream { method constructor (line 2710) | constructor() { class ChunkedStream (line 2719) | class ChunkedStream extends Stream { method constructor (line 2720) | constructor(length, chunkSize, manager) { method getMissingChunks (line 2729) | getMissingChunks() { method numChunksLoaded (line 2738) | get numChunksLoaded() { method isDataLoaded (line 2741) | get isDataLoaded() { method onReceiveData (line 2744) | onReceiveData(begin, chunk) { method onReceiveProgressiveData (line 2760) | onReceiveProgressiveData(data) { method ensureByte (line 2771) | ensureByte(pos) { method ensureRange (line 2787) | ensureRange(begin, end) { method nextEmptyChunk (line 2805) | nextEmptyChunk(beginChunk) { method hasChunk (line 2815) | hasChunk(chunk) { method getByte (line 2818) | getByte() { method getBytes (line 2828) | getBytes(length) { method getByteRange (line 2848) | getByteRange(begin, end) { method makeSubStream (line 2860) | makeSubStream(start, length, dict = null) { method getBaseStreams (line 2897) | getBaseStreams() { class ChunkedStreamManager (line 2901) | class ChunkedStreamManager { method constructor (line 2902) | constructor(pdfNetworkStream, args) { method sendRequest (line 2917) | sendRequest(begin, end) { method requestAllChunks (line 2959) | requestAllChunks(noFetch = false) { method _requestChunks (line 2966) | _requestChunks(chunks) { method getStream (line 3005) | getStream() { method requestRange (line 3008) | requestRange(begin, end) { method requestRanges (line 3018) | requestRanges(ranges = []) { method groupChunks (line 3032) | groupChunks(chunks) { method onProgress (line 3058) | onProgress(args) { method onReceiveData (line 3064) | onReceiveData(args) { method onError (line 3122) | onError(err) { method getBeginChunk (line 3125) | getBeginChunk(begin) { method getEndChunk (line 3128) | getEndChunk(end) { method abort (line 3131) | abort(reason) { function convertToRGBA (line 3142) | function convertToRGBA(params) { function convertBlackAndWhiteToRGBA (line 3151) | function convertBlackAndWhiteToRGBA({ function convertRGBToRGBA (line 3192) | function convertRGBToRGBA({ function grayToRGBA (line 3236) | function grayToRGBA(src, dest) { constant MIN_IMAGE_DIM (line 3252) | const MIN_IMAGE_DIM = 2048; constant MAX_IMAGE_DIM (line 3253) | const MAX_IMAGE_DIM = 65537; constant MAX_ERROR (line 3254) | const MAX_ERROR = 128; class ImageResizer (line 3255) | class ImageResizer { method constructor (line 3258) | constructor(imgData, isMask) { method canUseImageDecoder (line 3262) | static get canUseImageDecoder() { method needsToBeResized (line 3265) | static needsToBeResized(width, height) { method MAX_DIM (line 3290) | static get MAX_DIM() { method MAX_AREA (line 3293) | static get MAX_AREA() { method MAX_AREA (line 3297) | static set MAX_AREA(area) { method setOptions (line 3303) | static setOptions({ method _areGoodDims (line 3312) | static _areGoodDims(width, height) { method _guessMax (line 3324) | static _guessMax(start, end, tolerance, defaultHeight) { method createImage (line 3336) | static async createImage(imgData, isMask = false) { method _createImage (line 3339) | async _createImage() { method #rescaleImageData (line 3407) | #rescaleImageData() { method _encodeBMP (line 3485) | _encodeBMP() { class DecodeStream (line 3609) | class DecodeStream extends BaseStream { method constructor (line 3610) | constructor(maybeMinBufferLength) { method isEmpty (line 3624) | get isEmpty() { method ensureBuffer (line 3630) | ensureBuffer(requested) { method getByte (line 3643) | getByte() { method getBytes (line 3653) | getBytes(length, decoderOptions = null) { method getImageData (line 3675) | async getImageData(length, decoderOptions) { method reset (line 3685) | reset() { method makeSubStream (line 3688) | makeSubStream(start, length, dict = null) { method getBaseStreams (line 3701) | getBaseStreams() { class StreamsSequenceStream (line 3705) | class StreamsSequenceStream extends DecodeStream { method constructor (line 3706) | constructor(streams, onError = null) { method readBlock (line 3716) | readBlock() { method getBaseStreams (line 3739) | getBaseStreams() { class ColorSpaceUtils (line 3757) | class ColorSpaceUtils { method parse (line 3758) | static parse({ method #subParse (line 3806) | static #subParse(cs, options) { method #parse (line 3824) | static #parse(cs, options) { method gray (line 3965) | static get gray() { method rgb (line 3968) | static get rgb() { method rgba (line 3971) | static get rgba() { method cmyk (line 3974) | static get cmyk() { class JpegError (line 3992) | class JpegError extends BaseException { method constructor (line 3993) | constructor(msg) { class DNLMarkerError (line 3997) | class DNLMarkerError extends BaseException { method constructor (line 3998) | constructor(message, scanLines) { class EOIMarkerError (line 4003) | class EOIMarkerError extends BaseException { method constructor (line 4004) | constructor(msg) { function buildHuffmanTable (line 4017) | function buildHuffmanTable(codeLengths, values) { function getBlockBufferOffset (line 4061) | function getBlockBufferOffset(component, row, col) { function decodeScan (line 4064) | function decodeScan(data, offset, frame, components, resetInterval, spec... function quantizeAndInverse (line 4332) | function quantizeAndInverse(component, blockBufferOffset, p) { function buildComponentData (line 4535) | function buildComponentData(frame, component) { function findNextFileMarker (line 4547) | function findNextFileMarker(data, currentPos, startPos = currentPos) { function prepareComponents (line 4574) | function prepareComponents(frame) { function readDataBlock (line 4590) | function readDataBlock(data, offset) { function skipData (line 4606) | function skipData(data, offset) { class JpegImage (line 4616) | class JpegImage { method constructor (line 4617) | constructor({ method canUseImageDecoder (line 4624) | static canUseImageDecoder(data, colorTransform = -1) { method parse (line 4679) | parse(data, { method _getLinearizedBlockData (line 4925) | _getLinearizedBlockData(width, height, isSourcePDF = false) { method _isColorConversionNeeded (line 4975) | get _isColorConversionNeeded() { method _convertYccToRgb (line 4992) | _convertYccToRgb(data) { method _convertYccToRgba (line 5004) | _convertYccToRgba(data, out) { method _convertYcckToRgb (line 5016) | _convertYcckToRgb(data) { method _convertYcckToRgba (line 5020) | _convertYcckToRgba(data) { method _convertYcckToCmyk (line 5024) | _convertYcckToCmyk(data) { method _convertCmykToRgb (line 5036) | _convertCmykToRgb(data) { method _convertCmykToRgba (line 5041) | _convertCmykToRgba(data) { method getData (line 5050) | getData({ class JpegStream (line 5105) | class JpegStream extends DecodeStream { method constructor (line 5107) | constructor(stream, maybeLength, params) { method canUseImageDecoder (line 5114) | static get canUseImageDecoder() { method setOptions (line 5117) | static setOptions({ method bytes (line 5122) | get bytes() { method ensureBuffer (line 5125) | ensureBuffer(requested) {} method readBlock (line 5126) | readBlock() { method jpegOptions (line 5129) | get jpegOptions() { method #skipUselessBytes (line 5160) | #skipUselessBytes(data) { method decodeImage (line 5171) | decodeImage(bytes) { method canAsyncDecodeImageFromBuffer (line 5190) | get canAsyncDecodeImageFromBuffer() { method getTransferableImage (line 5193) | async getTransferableImage() { function locateFile (line 5251) | function locateFile(path) { function updateMemoryViews (line 5294) | function updateMemoryViews() { function preRun (line 5307) | function preRun() { function initRuntime (line 5316) | function initRuntime() { function postRun (line 5320) | function postRun() { function addRunDependency (line 5331) | function addRunDependency(id) { function removeRunDependency (line 5335) | function removeRunDependency(id) { function abort (line 5346) | function abort(what) { function findWasmBinary (line 5357) | function findWasmBinary() { function getBinarySync (line 5363) | function getBinarySync(file) { function getWasmBinary (line 5372) | async function getWasmBinary(binaryFile) { function instantiateArrayBuffer (line 5381) | async function instantiateArrayBuffer(binaryFile, imports) { function instantiateAsync (line 5391) | async function instantiateAsync(binary, binaryFile, imports) { function getWasmImports (line 5406) | function getWasmImports() { function createWasm (line 5411) | async function createWasm() { class ExitStatus (line 5442) | class ExitStatus { method constructor (line 5444) | constructor(status) { function _copy_pixels_1 (line 5523) | function _copy_pixels_1(compG_ptr, nb_pixels) { function _copy_pixels_3 (line 5529) | function _copy_pixels_3(compR_ptr, compG_ptr, compB_ptr, nb_pixels) { function _copy_pixels_4 (line 5543) | function _copy_pixels_4(compR_ptr, compG_ptr, compB_ptr, compA_ptr, nb_p... function _fd_seek (line 5642) | function _fd_seek(fd, offset, whence, newOffset) { function _gray_to_rgba (line 5706) | function _gray_to_rgba(compG_ptr, nb_pixels) { function _graya_to_rgba (line 5715) | function _graya_to_rgba(compG_ptr, compA_ptr, nb_pixels) { function _jsPrintWarning (line 5726) | function _jsPrintWarning(message_ptr) { function _rgb_to_rgba (line 5730) | function _rgb_to_rgba(compR_ptr, compG_ptr, compB_ptr, nb_pixels) { function _storeErrorMessage (line 5745) | function _storeErrorMessage(message_ptr) { function run (line 5779) | function run() { class JpxError (line 5824) | class JpxError extends BaseException { method constructor (line 5825) | constructor(msg) { class JpxImage (line 5829) | class JpxImage { method setOptions (line 5836) | static setOptions({ method #getJsModule (line 5849) | static async #getJsModule(fallbackCallback) { method #instantiateWasm (line 5863) | static async #instantiateWasm(fallbackCallback, imports, successCallba... method decode (line 5886) | static async decode(bytes, { method cleanup (line 5938) | static cleanup() { method parseImageProperties (line 5941) | static parseImageProperties(stream) { function hexToInt (line 5969) | function hexToInt(a, size) { function hexToStr (line 5976) | function hexToStr(a, size) { function addHex (line 5985) | function addHex(a, b, size) { function incHex (line 5993) | function incHex(a, size) { constant MAX_NUM_SIZE (line 6001) | const MAX_NUM_SIZE = 16; constant MAX_ENCODED_NUM_SIZE (line 6002) | const MAX_ENCODED_NUM_SIZE = 19; class BinaryCMapStream (line 6003) | class BinaryCMapStream { method constructor (line 6004) | constructor(data) { method readByte (line 6010) | readByte() { method readNumber (line 6016) | readNumber() { method readSigned (line 6029) | readSigned() { method readHex (line 6033) | readHex(num, size) { method readHexNumber (line 6037) | readHexNumber(num, size) { method readHexSigned (line 6063) | readHexSigned(num, size) { method readString (line 6072) | readString() { class BinaryCMapReader (line 6081) | class BinaryCMapReader { method process (line 6082) | async process(data, cMap, extend) { class Ascii85Stream (line 6227) | class Ascii85Stream extends DecodeStream { method constructor (line 6228) | constructor(str, maybeLength) { method readBlock (line 6237) | readBlock() { class AsciiHexStream (line 6293) | class AsciiHexStream extends DecodeStream { method constructor (line 6294) | constructor(str, maybeLength) { method readBlock (line 6303) | readBlock() { class CCITTFaxDecoder (line 6361) | class CCITTFaxDecoder { method constructor (line 6362) | constructor(source, options = {}) { method readNextChar (line 6397) | readNextChar() { method _addPixels (line 6687) | _addPixels(a1, blackPixels) { method _addPixelsNeg (line 6703) | _addPixelsNeg(a1, blackPixels) { method _findTableCode (line 6729) | _findTableCode(start, end, table, limit) { method _getTwoDimCode (line 6749) | _getTwoDimCode() { method _getWhiteCode (line 6768) | _getWhiteCode() { method _getBlackCode (line 6795) | _getBlackCode() { method _lookBits (line 6831) | _lookBits(n) { method _eatBits (line 6845) | _eatBits(n) { class CCITTFaxStream (line 6856) | class CCITTFaxStream extends DecodeStream { method constructor (line 6857) | constructor(str, maybeLength, params) { method readBlock (line 6879) | readBlock() { class FlateStream (line 6901) | class FlateStream extends DecodeStream { method constructor (line 6902) | constructor(str, maybeLength) { method getImageData (line 6923) | async getImageData(length, _decoderOptions) { method asyncGetBytes (line 6927) | async asyncGetBytes() { method isAsync (line 6960) | get isAsync() { method getBits (line 6963) | getBits(bits) { method getCode (line 6980) | getCode(table) { method generateHuffmanTable (line 7004) | generateHuffmanTable(lengths) { method #endsStreamOnError (line 7033) | #endsStreamOnError(err) { method readBlock (line 7037) | readBlock() { class ArithmeticDecoder (line 7421) | class ArithmeticDecoder { method constructor (line 7422) | constructor(data, start, end) { method byteIn (line 7434) | byteIn() { method readBit (line 7458) | readBit(contexts, pos) { class Jbig2Error (line 7515) | class Jbig2Error extends BaseException { method constructor (line 7516) | constructor(msg) { class ContextCache (line 7520) | class ContextCache { method getContexts (line 7521) | getContexts(id) { class DecodingContext (line 7528) | class DecodingContext { method constructor (line 7529) | constructor(data, start, end) { method decoder (line 7534) | get decoder() { method contextCache (line 7538) | get contextCache() { function decodeInteger (line 7543) | function decodeInteger(contextCache, procedure, decoder) { function decodeIAID (line 7568) | function decodeIAID(contextCache, decoder, codeLength) { function decodeBitmapTemplate0 (line 7780) | function decodeBitmapTemplate0(width, height, decodingContext) { function decodeBitmap (line 7798) | function decodeBitmap(mmr, width, height, templateIndex, prediction, ski... function decodeRefinement (line 7904) | function decodeRefinement(width, height, templateIndex, referenceBitmap,... function decodeSymbolDictionary (line 7972) | function decodeSymbolDictionary(huffman, refinement, symbols, numberOfNe... function decodeTextRegion (line 8082) | function decodeTextRegion(huffman, refinement, width, height, defaultPix... function decodePatternDictionary (line 8197) | function decodePatternDictionary(mmr, patternWidth, patternHeight, maxPa... function decodeHalftoneRegion (line 8231) | function decodeHalftoneRegion(mmr, patterns, template, regionWidth, regi... function readSegmentHeader (line 8326) | function readSegmentHeader(data, start) { function readSegments (line 8418) | function readSegments(header, data, start, end) { function readRegionSegmentInformation (line 8447) | function readRegionSegmentInformation(data, start) { function processSegment (line 8457) | function processSegment(segment, visitor) { function processSegments (line 8649) | function processSegments(segments, visitor) { function parseJbig2Chunks (line 8654) | function parseJbig2Chunks(chunks) { function parseJbig2 (line 8663) | function parseJbig2(data) { class SimpleSegmentVisitor (line 8666) | class SimpleSegmentVisitor { method onPageInformation (line 8667) | onPageInformation(info) { method drawBitmap (line 8676) | drawBitmap(regionInfo, bitmap) { method onImmediateGenericRegion (line 8725) | onImmediateGenericRegion(region, data, start, end) { method onImmediateLosslessGenericRegion (line 8731) | onImmediateLosslessGenericRegion() { method onSymbolDictionary (line 8734) | onSymbolDictionary(dictionary, currentSegment, referredSegments, data,... method onImmediateTextRegion (line 8754) | onImmediateTextRegion(region, referredSegments, data, start, end) { method onImmediateLosslessTextRegion (line 8774) | onImmediateLosslessTextRegion() { method onPatternDictionary (line 8777) | onPatternDictionary(dictionary, currentSegment, data, start, end) { method onImmediateHalftoneRegion (line 8785) | onImmediateHalftoneRegion(region, referredSegments, data, start, end) { method onImmediateLosslessHalftoneRegion (line 8792) | onImmediateLosslessHalftoneRegion() { method onTables (line 8795) | onTables(currentSegment, data, start, end) { class HuffmanLine (line 8803) | class HuffmanLine { method constructor (line 8804) | constructor(lineData) { class HuffmanTreeNode (line 8822) | class HuffmanTreeNode { method constructor (line 8823) | constructor(line) { method buildTree (line 8835) | buildTree(line, shift) { method decodeNode (line 8847) | decodeNode(reader) { class HuffmanTable (line 8862) | class HuffmanTable { method constructor (line 8863) | constructor(lines, prefixCodesDone) { method decode (line 8875) | decode(reader) { method assignPrefixCodes (line 8878) | assignPrefixCodes(lines) { function decodeTablesSegment (line 8910) | function decodeTablesSegment(data, start, end) { function getStandardTable (line 8938) | function getStandardTable(number) { class Reader (line 9000) | class Reader { method constructor (line 9001) | constructor(data, start, end) { method readBit (line 9009) | readBit() { method readBits (line 9021) | readBits(numBits) { method byteAlign (line 9029) | byteAlign() { method next (line 9032) | next() { function getCustomHuffmanTable (line 9039) | function getCustomHuffmanTable(index, referredTo, customTables) { function getTextRegionHuffmanTables (line 9052) | function getTextRegionHuffmanTables(textRegion, referredTo, customTables... function getSymbolDictionaryHuffmanTables (line 9146) | function getSymbolDictionaryHuffmanTables(dictionary, referredTo, custom... function readUncompressedBitmap (line 9193) | function readUncompressedBitmap(reader, width, height) { function decodeMMRBitmap (line 9205) | function decodeMMRBitmap(input, width, height, endOfBlock) { class Jbig2Image (line 9244) | class Jbig2Image { method parseChunks (line 9245) | parseChunks(chunks) { method parse (line 9248) | parse(data) { class Jbig2Stream (line 9259) | class Jbig2Stream extends DecodeStream { method constructor (line 9260) | constructor(stream, maybeLength, params) { method bytes (line 9267) | get bytes() { method ensureBuffer (line 9270) | ensureBuffer(requested) {} method readBlock (line 9271) | readBlock() { method decodeImage (line 9274) | decodeImage(bytes) { method canAsyncDecodeImageFromBuffer (line 9307) | get canAsyncDecodeImageFromBuffer() { class JpxStream (line 9316) | class JpxStream extends DecodeStream { method constructor (line 9317) | constructor(stream, maybeLength, params) { method bytes (line 9324) | get bytes() { method ensureBuffer (line 9327) | ensureBuffer(requested) {} method readBlock (line 9328) | readBlock(decoderOptions) { method isAsyncDecoder (line 9331) | get isAsyncDecoder() { method decodeImage (line 9334) | async decodeImage(bytes, decoderOptions) { method canAsyncDecodeImageFromBuffer (line 9344) | get canAsyncDecodeImageFromBuffer() { class LZWStream (line 9351) | class LZWStream extends DecodeStream { method constructor (line 9352) | constructor(str, maybeLength, earlyChange) { method readBits (line 9375) | readBits(n) { method readBlock (line 9392) | readBlock() { class PredictorStream (line 9470) | class PredictorStream extends DecodeStream { method constructor (line 9471) | constructor(str, maybeLength, params) { method readBlockTiff (line 9493) | readBlockTiff() { method readBlockPng (line 9565) | readBlockPng() { class RunLengthStream (line 9655) | class RunLengthStream extends DecodeStream { method constructor (line 9656) | constructor(str, maybeLength) { method readBlock (line 9661) | readBlock() { constant MAX_LENGTH_TO_CACHE (line 9703) | const MAX_LENGTH_TO_CACHE = 1000; function getInlineImageCacheKey (line 9704) | function getInlineImageCacheKey(bytes) { class Parser (line 9716) | class Parser { method constructor (line 9717) | constructor({ method refill (line 9731) | refill() { method shift (line 9735) | shift() { method tryShift (line 9744) | tryShift() { method getObj (line 9755) | getObj(cipherTransform = null) { method findDefaultInlineStreamEnd (line 9822) | findDefaultInlineStreamEnd(stream) { method findDCTDecodeInlineStreamEnd (line 9913) | findDCTDecodeInlineStreamEnd(stream) { method findASCII85DecodeInlineStreamEnd (line 9990) | findASCII85DecodeInlineStreamEnd(stream) { method findASCIIHexDecodeInlineStreamEnd (line 10024) | findASCIIHexDecodeInlineStreamEnd(stream) { method inlineStreamSkipEI (line 10042) | inlineStreamSkipEI(stream) { method makeInlineImage (line 10057) | makeInlineImage(cipherTransform) { method #findStreamLength (line 10136) | #findStreamLength(startPos) { method makeStream (line 10191) | makeStream(dict, cipherTransform) { method filter (line 10223) | filter(stream, dict, length) { method makeFilter (line 10251) | makeFilter(stream, name, maybeLength, params) { function toHexDigit (line 10307) | function toHexDigit(ch) { class Lexer (line 10316) | class Lexer { method constructor (line 10317) | constructor(stream, knownCommands = null) { method nextChar (line 10325) | nextChar() { method peekChar (line 10328) | peekChar() { method getNumber (line 10331) | getNumber() { method getString (line 10405) | getString() { method getName (line 10503) | getName() { method _hexStringWarn (line 10542) | _hexStringWarn(ch) { method getHexString (line 10553) | getHexString() { method getObj (line 10588) | getObj() { method skipToNextLine (line 10690) | skipToNextLine() { class Linearization (line 10707) | class Linearization { method create (line 10708) | static create(stream) { constant BUILT_IN_CMAPS (line 10764) | const BUILT_IN_CMAPS = ["Adobe-GB1-UCS2", "Adobe-CNS1-UCS2", "Adobe-Japa... constant MAX_MAP_RANGE (line 10765) | const MAX_MAP_RANGE = 2 ** 24 - 1; class CMap (line 10766) | class CMap { method constructor (line 10767) | constructor(builtInCMap = false) { method addCodespaceRange (line 10776) | addCodespaceRange(n, low, high) { method mapCidRange (line 10780) | mapCidRange(low, high, dstLow) { method mapBfRange (line 10788) | mapBfRange(low, high, dstLow) { method mapBfRangeToArray (line 10803) | mapBfRangeToArray(low, high, array) { method mapOne (line 10814) | mapOne(src, dst) { method lookup (line 10817) | lookup(code) { method contains (line 10820) | contains(code) { method forEach (line 10823) | forEach(callback) { method charCodeOf (line 10838) | charCodeOf(value) { method getMap (line 10850) | getMap() { method readCharCode (line 10853) | readCharCode(str, offset, out) { method getCharCodeLength (line 10872) | getCharCodeLength(charCode) { method length (line 10886) | get length() { method isIdentityCMap (line 10889) | get isIdentityCMap() { class IdentityCMap (line 10904) | class IdentityCMap extends CMap { method constructor (line 10905) | constructor(vertical, n) { method mapCidRange (line 10910) | mapCidRange(low, high, dstLow) { method mapBfRange (line 10913) | mapBfRange(low, high, dstLow) { method mapBfRangeToArray (line 10916) | mapBfRangeToArray(low, high, array) { method mapOne (line 10919) | mapOne(src, dst) { method lookup (line 10922) | lookup(code) { method contains (line 10925) | contains(code) { method forEach (line 10928) | forEach(callback) { method charCodeOf (line 10933) | charCodeOf(value) { method getMap (line 10936) | getMap() { method length (line 10943) | get length() { method isIdentityCMap (line 10946) | get isIdentityCMap() { function strToInt (line 10950) | function strToInt(str) { function expectString (line 10957) | function expectString(obj) { function expectInt (line 10962) | function expectInt(obj) { function parseBfChar (line 10967) | function parseBfChar(cMap, lexer) { function parseBfRange (line 10984) | function parseBfRange(cMap, lexer) { function parseCidChar (line 11016) | function parseCidChar(cMap, lexer) { function parseCidRange (line 11033) | function parseCidRange(cMap, lexer) { function parseCodespaceRange (line 11053) | function parseCodespaceRange(cMap, lexer) { function parseWMode (line 11075) | function parseWMode(cMap, lexer) { function parseCMapName (line 11081) | function parseCMapName(cMap, lexer) { function parseCMap (line 11087) | async function parseCMap(cMap, lexer, fetchBuiltInCMap, useCMap) { function extendCMap (line 11143) | async function extendCMap(cMap, fetchBuiltInCMap, useCMap) { function createBuiltInCMap (line 11159) | async function createBuiltInCMap(name, fetchBuiltInCMap) { class CMapFactory (line 11182) | class CMapFactory { method create (line 11183) | static async create({ function getEncoding (line 11214) | function getEncoding(encodingName) { constant MAX_SUBR_NESTING (line 11240) | const MAX_SUBR_NESTING = 10; constant NUM_STANDARD_CFF_STRINGS (line 11242) | const NUM_STANDARD_CFF_STRINGS = 391; method stackFn (line 11360) | stackFn(stack, index) { method stackFn (line 11367) | stackFn(stack, index) { method stackFn (line 11374) | stackFn(stack, index) { method stackFn (line 11381) | stackFn(stack, index) { method stackFn (line 11412) | stackFn(stack, index) { class CFFParser (line 11452) | class CFFParser { method constructor (line 11453) | constructor(file, properties, seacAnalysisEnabled) { method parse (line 11458) | parse() { method parseHeader (line 11519) | parseHeader() { method parseDict (line 11544) | parseDict(dict) { method parseIndex (line 11609) | parseIndex(pos) { method parseNameIndex (line 11639) | parseNameIndex(index) { method parseStringIndex (line 11647) | parseStringIndex(index) { method createDict (line 11655) | createDict(Type, dict, strings) { method parseCharString (line 11662) | parseCharString(state, data, localSubrIndex, globalSubrIndex) { method parseCharStrings (line 11813) | parseCharStrings({ method emptyPrivateDictionary (line 11880) | emptyPrivateDictionary(parentDict) { method parsePrivateDict (line 11885) | parsePrivateDict(parentDict) { method parseCharsets (line 11921) | parseCharsets(pos, length, strings, cid) { method parseEncoding (line 11967) | parseEncoding(pos, properties, strings, charset) { method parseFDSelect (line 12025) | parseFDSelect(pos, length) { class CFF (line 12062) | class CFF { method constructor (line 12063) | constructor() { method duplicateFirstGlyph (line 12076) | duplicateFirstGlyph() { method hasGlyphId (line 12087) | hasGlyphId(id) { class CFFHeader (line 12095) | class CFFHeader { method constructor (line 12096) | constructor(major, minor, hdrSize, offSize) { class CFFStrings (line 12103) | class CFFStrings { method constructor (line 12104) | constructor() { method get (line 12107) | get(index) { method getSID (line 12116) | getSID(str) { method add (line 12127) | add(value) { method count (line 12130) | get count() { class CFFIndex (line 12134) | class CFFIndex { method constructor (line 12135) | constructor() { method add (line 12139) | add(data) { method set (line 12143) | set(index, data) { method get (line 12147) | get(index) { method count (line 12150) | get count() { class CFFDict (line 12154) | class CFFDict { method constructor (line 12155) | constructor(tables, strings) { method setByKey (line 12165) | setByKey(key, value) { method setByName (line 12185) | setByName(name, value) { method hasName (line 12191) | hasName(name) { method getByName (line 12194) | getByName(name) { method removeByName (line 12204) | removeByName(name) { method createTables (line 12207) | static createTables(layout) { class CFFTopDict (line 12229) | class CFFTopDict extends CFFDict { method tables (line 12230) | static get tables() { method constructor (line 12233) | constructor(strings) { class CFFPrivateDict (line 12239) | class CFFPrivateDict extends CFFDict { method tables (line 12240) | static get tables() { method constructor (line 12243) | constructor(strings) { class CFFCharset (line 12253) | class CFFCharset { method constructor (line 12254) | constructor(predefined, format, charset, raw) { class CFFEncoding (line 12261) | class CFFEncoding { method constructor (line 12262) | constructor(predefined, format, encoding, raw) { class CFFFDSelect (line 12269) | class CFFFDSelect { method constructor (line 12270) | constructor(format, fdSelect) { method getFDIndex (line 12274) | getFDIndex(glyphIndex) { class CFFOffsetTracker (line 12281) | class CFFOffsetTracker { method constructor (line 12282) | constructor() { method isTracking (line 12285) | isTracking(key) { method track (line 12288) | track(key, location) { method offset (line 12294) | offset(value) { method setEntryLocation (line 12299) | setEntryLocation(key, values, output) { class CFFCompiler (line 12324) | class CFFCompiler { method constructor (line 12325) | constructor(cff) { method compile (line 12328) | compile() { method encodeNumber (line 12400) | encodeNumber(value) { method EncodeFloatRegExp (line 12406) | static get EncodeFloatRegExp() { method encodeFloat (line 12409) | encodeFloat(num) { method encodeInteger (line 12437) | encodeInteger(value) { method compileHeader (line 12454) | compileHeader(header) { method compileNameIndex (line 12457) | compileNameIndex(names) { method compileTopDicts (line 12477) | compileTopDicts(dicts, length, removeCidKeys) { method compilePrivateDicts (line 12500) | compilePrivateDicts(dicts, trackers, output) { method compileDict (line 12523) | compileDict(dict, offsetTracker) { method compileStringIndex (line 12570) | compileStringIndex(strings) { method compileCharStrings (line 12577) | compileCharStrings(charStrings) { method compileCharset (line 12589) | compileCharset(charset, numGlyphs, strings, isCIDFont) { method compileEncoding (line 12620) | compileEncoding(encoding) { method compileFDSelect (line 12623) | compileFDSelect(fdSelect) { method compileTypedArray (line 12654) | compileTypedArray(data) { method compileIndex (line 12657) | compileIndex(index, trackers = []) { function mapSpecialUnicodeValues (line 17271) | function mapSpecialUnicodeValues(code) { function getUnicodeForGlyph (line 17281) | function getUnicodeForGlyph(name, glyphsUnicodeMap) { function getUnicodeRangeFor (line 17309) | function getUnicodeRangeFor(value, lastPosition = -1) { function getCharUnicodeCategory (line 17330) | function getCharUnicodeCategory(char) { function clearUnicodeCaches (line 17344) | function clearUnicodeCaches() { constant SEAC_ANALYSIS_ENABLED (line 17354) | const SEAC_ANALYSIS_ENABLED = true; function recoverGlyphName (line 17367) | function recoverGlyphName(name, glyphsUnicodeMap) { function type1FontGlyphMapping (line 17382) | function type1FontGlyphMapping(properties, builtInEncoding, glyphNames) { function normalizeFontName (line 17429) | function normalizeFontName(name) { function getStandardFontName (line 18346) | function getStandardFontName(name) { function isKnownFontName (line 18351) | function isKnownFontName(name) { class ToUnicodeMap (line 18358) | class ToUnicodeMap { method constructor (line 18359) | constructor(cmap = []) { method length (line 18362) | get length() { method forEach (line 18365) | forEach(callback) { method has (line 18370) | has(i) { method get (line 18373) | get(i) { method charCodeOf (line 18376) | charCodeOf(value) { method amend (line 18388) | amend(map) { class IdentityToUnicodeMap (line 18394) | class IdentityToUnicodeMap { method constructor (line 18395) | constructor(firstChar, lastChar) { method length (line 18399) | get length() { method forEach (line 18402) | forEach(callback) { method has (line 18407) | has(i) { method get (line 18410) | get(i) { method charCodeOf (line 18416) | charCodeOf(v) { method amend (line 18419) | amend(map) { class CFFFont (line 18428) | class CFFFont { method constructor (line 18429) | constructor(file, properties) { method numGlyphs (line 18444) | get numGlyphs() { method getCharset (line 18447) | getCharset() { method getGlyphMapping (line 18450) | getGlyphMapping() { method hasGlyphId (line 18497) | hasGlyphId(id) { method _createBuiltInEncoding (line 18500) | _createBuiltInEncoding() { function getFloat214 (line 18533) | function getFloat214(data, offset) { function getSubroutineBias (line 18536) | function getSubroutineBias(subrs) { function parseCmap (line 18546) | function parseCmap(data, start, end) { function parseCff (line 18596) | function parseCff(data, start, end, seacAnalysisEnabled) { function parseGlyfTable (line 18609) | function parseGlyfTable(glyf, loca, isGlyphLocationsLong) { function lookupCmap (line 18627) | function lookupCmap(ranges, unicode) { function compileGlyf (line 18648) | function compileGlyf(code, cmds, font) { function compileCharString (line 18810) | function compileCharString(charStringCode, cmds, font, glyphId) { constant NOOP (line 19163) | const NOOP = ""; class Commands (line 19164) | class Commands { method add (line 19168) | add(cmd, args) { method transform (line 19182) | transform(transf) { method translate (line 19185) | translate(x, y) { method save (line 19188) | save() { method restore (line 19191) | restore() { method getSVG (line 19194) | getSVG() { class CompiledFont (line 19198) | class CompiledFont { method constructor (line 19199) | constructor(fontMatrix) { method getPathJs (line 19204) | getPathJs(unicode) { method compileGlyph (line 19226) | compileGlyph(code, glyphId) { method compileGlyphImpl (line 19247) | compileGlyphImpl() { method hasBuiltPath (line 19250) | hasBuiltPath(unicode) { class TrueTypeCompiled (line 19258) | class TrueTypeCompiled extends CompiledFont { method constructor (line 19259) | constructor(glyphs, cmap, fontMatrix) { method compileGlyphImpl (line 19264) | compileGlyphImpl(code, cmds) { class Type2Compiled (line 19268) | class Type2Compiled extends CompiledFont { method constructor (line 19269) | constructor(cffInfo, cmap, fontMatrix) { method compileGlyphImpl (line 19282) | compileGlyphImpl(code, cmds, glyphId) { class FontRendererFactory (line 19286) | class FontRendererFactory { method create (line 19287) | static create(font, seacAnalysisEnabled) { constant ON_CURVE_POINT (line 22350) | const ON_CURVE_POINT = 1 << 0; constant X_SHORT_VECTOR (line 22351) | const X_SHORT_VECTOR = 1 << 1; constant Y_SHORT_VECTOR (line 22352) | const Y_SHORT_VECTOR = 1 << 2; constant REPEAT_FLAG (line 22353) | const REPEAT_FLAG = 1 << 3; constant X_IS_SAME_OR_POSITIVE_X_SHORT_VECTOR (line 22354) | const X_IS_SAME_OR_POSITIVE_X_SHORT_VECTOR = 1 << 4; constant Y_IS_SAME_OR_POSITIVE_Y_SHORT_VECTOR (line 22355) | const Y_IS_SAME_OR_POSITIVE_Y_SHORT_VECTOR = 1 << 5; constant OVERLAP_SIMPLE (line 22356) | const OVERLAP_SIMPLE = 1 << 6; constant ARG_1_AND_2_ARE_WORDS (line 22357) | const ARG_1_AND_2_ARE_WORDS = 1 << 0; constant ARGS_ARE_XY_VALUES (line 22358) | const ARGS_ARE_XY_VALUES = 1 << 1; constant WE_HAVE_A_SCALE (line 22359) | const WE_HAVE_A_SCALE = 1 << 3; constant MORE_COMPONENTS (line 22360) | const MORE_COMPONENTS = 1 << 5; constant WE_HAVE_AN_X_AND_Y_SCALE (line 22361) | const WE_HAVE_AN_X_AND_Y_SCALE = 1 << 6; constant WE_HAVE_A_TWO_BY_TWO (line 22362) | const WE_HAVE_A_TWO_BY_TWO = 1 << 7; constant WE_HAVE_INSTRUCTIONS (line 22363) | const WE_HAVE_INSTRUCTIONS = 1 << 8; class GlyfTable (line 22364) | class GlyfTable { method constructor (line 22365) | constructor({ method getSize (line 22389) | getSize() { method write (line 22392) | write() { method scale (line 22421) | scale(factors) { class Glyph (line 22427) | class Glyph { method constructor (line 22428) | constructor({ method parse (line 22437) | static parse(pos, glyf) { method getSize (line 22461) | getSize() { method write (line 22468) | write(pos, buf) { method scale (line 22483) | scale(factor) { class GlyphHeader (line 22498) | class GlyphHeader { method constructor (line 22499) | constructor({ method parse (line 22512) | static parse(pos, glyf) { method getSize (line 22521) | getSize() { method write (line 22524) | write(pos, buf) { method scale (line 22532) | scale(x, factor) { class Contour (line 22537) | class Contour { method constructor (line 22538) | constructor({ class SimpleGlyph (line 22548) | class SimpleGlyph { method constructor (line 22549) | constructor({ method parse (line 22556) | static parse(pos, glyf, numberOfContours) { method getSize (line 22640) | getSize() { method write (line 22667) | write(pos, buf) { method scale (line 22743) | scale(x, factor) { class CompositeGlyph (line 22754) | class CompositeGlyph { method constructor (line 22755) | constructor({ method parse (line 22770) | static parse(pos, glyf) { method getSize (line 22823) | getSize() { method write (line 22838) | write(pos, buf) { method scale (line 22874) | scale(x, factor) {} function writeInt16 (line 22880) | function writeInt16(dest, offset, num) { function writeInt32 (line 22884) | function writeInt32(dest, offset, num) { function writeData (line 22890) | function writeData(dest, offset, data) { constant OTF_HEADER_SIZE (line 22903) | const OTF_HEADER_SIZE = 12; constant OTF_TABLE_ENTRY_SIZE (line 22904) | const OTF_TABLE_ENTRY_SIZE = 16; class OpenTypeFileBuilder (line 22905) | class OpenTypeFileBuilder { method constructor (line 22906) | constructor(sfnt) { method getSearchParams (line 22910) | static getSearchParams(entriesCount, entrySize) { method toArray (line 22924) | toArray() { method addTable (line 22975) | addTable(tag, data) { constant HINTING_ENABLED (line 22988) | const HINTING_ENABLED = false; constant COMMAND_MAP (line 22989) | const COMMAND_MAP = { class Type1CharString (line 23006) | class Type1CharString { method constructor (line 23007) | constructor() { method convert (line 23014) | convert(encoded, subrs, seacAnalysisEnabled) { method executeCommand (line 23207) | executeCommand(howManyArgs, command, keepStack) { constant EEXEC_ENCRYPT_KEY (line 23231) | const EEXEC_ENCRYPT_KEY = 55665; constant CHAR_STRS_ENCRYPT_KEY (line 23232) | const CHAR_STRS_ENCRYPT_KEY = 4330; function isHexDigit (line 23233) | function isHexDigit(code) { function decrypt (line 23236) | function decrypt(data, key, discardNumber) { function decryptAscii (line 23257) | function decryptAscii(data, key, discardNumber) { function isSpecial (line 23283) | function isSpecial(c) { class Type1Parser (line 23286) | class Type1Parser { method constructor (line 23287) | constructor(stream, encrypted, seacAnalysisEnabled) { method readNumberArray (line 23297) | readNumberArray() { method readNumber (line 23309) | readNumber() { method readInt (line 23313) | readInt() { method readBoolean (line 23317) | readBoolean() { method nextChar (line 23321) | nextChar() { method prevChar (line 23324) | prevChar() { method getToken (line 23328) | getToken() { method readCharStrings (line 23357) | readCharStrings(bytes, lenIV) { method extractFontProgram (line 23363) | extractFontProgram(properties) { method extractFontHeader (line 23496) | extractFontHeader(properties) { function findBlock (line 23555) | function findBlock(streamBytes, signature, startIndex) { function getHeaderBlock (line 23581) | function getHeaderBlock(stream, suggestedLength) { function getEexecBlock (line 23627) | function getEexecBlock(stream, suggestedLength) { class Type1Font (line 23637) | class Type1Font { method constructor (line 23638) | constructor(name, file, properties) { method numGlyphs (line 23668) | get numGlyphs() { method getCharset (line 23671) | getCharset() { method getGlyphMapping (line 23680) | getGlyphMapping(properties) { method hasGlyphId (line 23707) | hasGlyphId(id) { method getSeacs (line 23717) | getSeacs(charstrings) { method getType2Charstrings (line 23727) | getType2Charstrings(type1Charstrings) { method getType2Subrs (line 23734) | getType2Subrs(type1Subrs) { method wrap (line 23754) | wrap(name, glyphs, charstrings, subrs, properties) { constant PRIVATE_USE_AREAS (line 23842) | const PRIVATE_USE_AREAS = [[0xe000, 0xf8ff], [0x100000, 0x10fffd]]; constant PDF_GLYPH_SPACE_UNITS (line 23843) | const PDF_GLYPH_SPACE_UNITS = 1000; constant EXPORT_DATA_PROPERTIES (line 23844) | const EXPORT_DATA_PROPERTIES = ["ascent", "bbox", "black", "bold", "char... constant EXPORT_DATA_EXTRA_PROPERTIES (line 23845) | const EXPORT_DATA_EXTRA_PROPERTIES = ["cMap", "composite", "defaultEncod... function adjustWidths (line 23846) | function adjustWidths(properties) { function adjustTrueTypeToUnicode (line 23860) | function adjustTrueTypeToUnicode(properties, isSymbolicFont, nameRecords) { function adjustType1ToUnicode (line 23905) | function adjustType1ToUnicode(properties, builtInEncoding) { function amendFallbackToUnicode (line 23936) | function amendFallbackToUnicode(properties) { class fonts_Glyph (line 23954) | class fonts_Glyph { method constructor (line 23955) | constructor(originalCharCode, fontChar, unicode, accent, width, vmetri... method category (line 23966) | get category() { function int16 (line 23970) | function int16(b0, b1) { function writeSignedInt16 (line 23973) | function writeSignedInt16(bytes, index, value) { function signedInt16 (line 23977) | function signedInt16(b0, b1) { function writeUint32 (line 23981) | function writeUint32(bytes, index, value) { function int32 (line 23987) | function int32(b0, b1, b2, b3) { function string16 (line 23990) | function string16(value) { function safeString16 (line 23993) | function safeString16(value) { function isTrueTypeFile (line 24001) | function isTrueTypeFile(file) { function isTrueTypeCollectionFile (line 24005) | function isTrueTypeCollectionFile(file) { function isOpenTypeFile (line 24009) | function isOpenTypeFile(file) { function isType1File (line 24013) | function isType1File(file) { function isCFFFile (line 24023) | function isCFFFile(file) { function getFontFileType (line 24030) | function getFontFileType(file, { function applyStandardFontGlyphMap (line 24061) | function applyStandardFontGlyphMap(map, glyphMap) { function buildToFontChar (line 24066) | function buildToFontChar(encoding, glyphsUnicodeMap, differences) { function isMacNameRecord (line 24083) | function isMacNameRecord(r) { function isWinNameRecord (line 24086) | function isWinNameRecord(r) { function convertCidString (line 24089) | function convertCidString(charCode, cid, shouldThrow = false) { function adjustMapping (line 24103) | function adjustMapping(charCodeToGlyphId, hasGlyph, newGlyphZeroId, toUn... function getRanges (line 24163) | function getRanges(glyphs, toUnicodeExtraMap, numGlyphs) { function createCmapTable (line 24211) | function createCmapTable(glyphs, toUnicodeExtraMap, numGlyphs) { function validateOS2Table (line 24294) | function validateOS2Table(os2, file) { function createOS2Table (line 24315) | function createOS2Table(properties, charstrings, override) { function createPostTable (line 24371) | function createPostTable(properties) { function createPostscriptName (line 24375) | function createPostscriptName(name) { function createNameTable (line 24378) | function createNameTable(name, proto) { class Font (line 24412) | class Font { method constructor (line 24413) | constructor(name, file, properties, evaluatorOptions) { method renderer (line 24538) | get renderer() { method exportData (line 24542) | exportData() { method fallbackToSystemFont (line 24553) | fallbackToSystemFont(properties) { method checkAndRepair (line 24650) | checkAndRepair(name, font, properties) { method convert (line 25984) | convert(fontName, font, properties) { method _spaceWidth (line 26086) | get _spaceWidth() { method _charToGlyph (line 26116) | _charToGlyph(charcode, isSpace = false) { method charsToGlyphs (line 26181) | charsToGlyphs(chars) { method getCharPositions (line 26210) | getCharPositions(chars) { method glyphCacheValues (line 26228) | get glyphCacheValues() { method encodeString (line 26231) | encodeString(str) { class ErrorFont (line 26265) | class ErrorFont { method constructor (line 26266) | constructor(error) { method charsToGlyphs (line 26271) | charsToGlyphs() { method encodeString (line 26274) | encodeString(chars) { method exportData (line 26277) | exportData() { class Pattern (line 26298) | class Pattern { method constructor (line 26299) | constructor() { method parseShading (line 26302) | static parseShading(shading, xref, res, pdfFunctionFactory, globalColo... class BaseShading (line 26327) | class BaseShading { method getIR (line 26329) | getIR() { class RadialAxialShading (line 26333) | class RadialAxialShading extends BaseShading { method constructor (line 26334) | constructor(dict, xref, resources, pdfFunctionFactory, globalColorSpac... method getIR (line 26449) | getIR() { class MeshStreamReader (line 26473) | class MeshStreamReader { method constructor (line 26474) | constructor(stream, context) { method hasData (line 26484) | get hasData() { method readBits (line 26499) | readBits(n) { method align (line 26528) | align() { method readFlag (line 26532) | readFlag() { method readCoordinate (line 26535) | readCoordinate() { method readComponents (line 26545) | readComponents() { function buildB (line 26565) | function buildB(count) { function getB (line 26574) | function getB(count) { function clearPatternCaches (line 26577) | function clearPatternCaches() { class MeshShading (line 26580) | class MeshShading extends BaseShading { method constructor (line 26584) | constructor(stream, xref, resources, pdfFunctionFactory, globalColorSp... method _decodeType4Shading (line 26649) | _decodeType4Shading(reader) { method _decodeType5Shading (line 26690) | _decodeType5Shading(reader, verticesPerRow) { method _decodeType6Shading (line 26708) | _decodeType6Shading(reader) { method _decodeType7Shading (line 26825) | _decodeType7Shading(reader) { method _buildFigureFromPatch (line 26950) | _buildFigureFromPatch(index) { method _updateBounds (line 27023) | _updateBounds() { method _packData (line 27038) | _packData() { method getIR (line 27068) | getIR() { class DummyShading (line 27078) | class DummyShading extends BaseShading { method getIR (line 27079) | getIR() { function getTilingPatternIR (line 27083) | function getTilingPatternIR(operatorList, dict, color) { function getXfaFontName (line 27349) | function getXfaFontName(name) { function getXfaFontWidths (line 27354) | function getXfaFontWidths(name) { function getXfaFontDict (line 27383) | function getXfaFontDict(name) { class PostScriptParser (line 27408) | class PostScriptParser { method constructor (line 27409) | constructor(lexer) { method nextToken (line 27415) | nextToken() { method accept (line 27419) | accept(type) { method expect (line 27426) | expect(type) { method parse (line 27432) | parse() { method parseBlock (line 27439) | parseBlock() { method parseCondition (line 27452) | parseCondition() { class PostScriptToken (line 27484) | class PostScriptToken { method opCache (line 27485) | static get opCache() { method constructor (line 27488) | constructor(type, value) { method getOperator (line 27492) | static getOperator(op) { method LBRACE (line 27495) | static get LBRACE() { method RBRACE (line 27498) | static get RBRACE() { method IF (line 27501) | static get IF() { method IFELSE (line 27504) | static get IFELSE() { class PostScriptLexer (line 27508) | class PostScriptLexer { method constructor (line 27509) | constructor(stream) { method nextChar (line 27514) | nextChar() { method getToken (line 27517) | getToken() { method getNumber (line 27573) | getNumber() { class BaseLocalCache (line 27596) | class BaseLocalCache { method constructor (line 27597) | constructor(options) { method getByName (line 27605) | getByName(name) { method getByRef (line 27615) | getByRef(ref) { method set (line 27618) | set(name, ref, data) { class LocalImageCache (line 27622) | class LocalImageCache extends BaseLocalCache { method set (line 27623) | set(name, ref = null, data) { class LocalColorSpaceCache (line 27641) | class LocalColorSpaceCache extends BaseLocalCache { method set (line 27642) | set(name = null, ref = null, data) { class LocalFunctionCache (line 27662) | class LocalFunctionCache extends BaseLocalCache { method constructor (line 27663) | constructor(options) { method set (line 27668) | set(name = null, ref, data) { class LocalGStateCache (line 27678) | class LocalGStateCache extends BaseLocalCache { method set (line 27679) | set(name, ref = null, data) { class LocalTilingPatternCache (line 27697) | class LocalTilingPatternCache extends BaseLocalCache { method constructor (line 27698) | constructor(options) { method set (line 27703) | set(name = null, ref, data) { class RegionalImageCache (line 27713) | class RegionalImageCache extends BaseLocalCache { method constructor (line 27714) | constructor(options) { method set (line 27719) | set(name = null, ref, data) { class GlobalColorSpaceCache (line 27729) | class GlobalColorSpaceCache extends BaseLocalCache { method constructor (line 27730) | constructor(options) { method set (line 27735) | set(name = null, ref, data) { method clear (line 27744) | clear() { class GlobalImageCache (line 27748) | class GlobalImageCache { method constructor (line 27753) | constructor() { method #byteSize (line 27757) | get #byteSize() { method #cacheLimitReached (line 27764) | get #cacheLimitReached() { method shouldCache (line 27773) | shouldCache(ref, pageIndex) { method addDecodeFailed (line 27788) | addDecodeFailed(ref) { method hasDecodeFailed (line 27791) | hasDecodeFailed(ref) { method addByteSize (line 27794) | addByteSize(ref, byteSize) { method getData (line 27804) | getData(ref, pageIndex) { method setData (line 27819) | setData(ref, data) { method clear (line 27832) | clear(onlyData = false) { class PDFFunctionFactory (line 27848) | class PDFFunctionFactory { method constructor (line 27849) | constructor({ method create (line 27856) | create(fn, parseArray = false) { method _localFunctionCache (line 27885) | get _localFunctionCache() { function toNumberArray (line 27889) | function toNumberArray(arr) { class PDFFunction (line 27898) | class PDFFunction { method getSampleArray (line 27899) | static getSampleArray(size, outputSize, bps, stream) { method parse (line 27924) | static parse(factory, fn) { method parseArray (line 27941) | static parseArray(factory, fnObj) { method constructSampled (line 27955) | static constructSampled(factory, fn, dict) { method constructInterpolated (line 28036) | static constructInterpolated(factory, dict) { method constructStiched (line 28052) | static constructStiched(factory, dict) { method constructPostScript (line 28094) | static constructPostScript(factory, fn, dict) { function isPDFFunction (line 28158) | function isPDFFunction(v) { class PostScriptStack (line 28169) | class PostScriptStack { method constructor (line 28171) | constructor(initialStack) { method push (line 28174) | push(value) { method pop (line 28180) | pop() { method copy (line 28186) | copy(n) { method index (line 28195) | index(n) { method roll (line 28198) | roll(n, p) { class PostScriptEvaluator (line 28220) | class PostScriptEvaluator { method constructor (line 28221) | constructor(operators) { method execute (line 28224) | execute(initialStack) { class AstNode (line 28452) | class AstNode { method constructor (line 28453) | constructor(type) { method visit (line 28456) | visit(visitor) { class AstArgument (line 28460) | class AstArgument extends AstNode { method constructor (line 28461) | constructor(index, min, max) { method visit (line 28467) | visit(visitor) { class AstLiteral (line 28471) | class AstLiteral extends AstNode { method constructor (line 28472) | constructor(number) { method visit (line 28478) | visit(visitor) { class AstBinaryOperation (line 28482) | class AstBinaryOperation extends AstNode { method constructor (line 28483) | constructor(op, arg1, arg2, min, max) { method visit (line 28491) | visit(visitor) { class AstMin (line 28495) | class AstMin extends AstNode { method constructor (line 28496) | constructor(arg, max) { method visit (line 28502) | visit(visitor) { class AstVariable (line 28506) | class AstVariable extends AstNode { method constructor (line 28507) | constructor(index, min, max) { method visit (line 28513) | visit(visitor) { class AstVariableDefinition (line 28517) | class AstVariableDefinition extends AstNode { method constructor (line 28518) | constructor(variable, arg) { method visit (line 28523) | visit(visitor) { class ExpressionBuilderVisitor (line 28527) | class ExpressionBuilderVisitor { method constructor (line 28528) | constructor() { method visitArgument (line 28531) | visitArgument(arg) { method visitVariable (line 28534) | visitVariable(variable) { method visitLiteral (line 28537) | visitLiteral(literal) { method visitBinaryOperation (line 28540) | visitBinaryOperation(operation) { method visitVariableDefinition (line 28547) | visitVariableDefinition(definition) { method visitMin (line 28554) | visitMin(max) { method toString (line 28559) | toString() { function buildAddOperation (line 28563) | function buildAddOperation(num1, num2) { function buildMulOperation (line 28575) | function buildMulOperation(num1, num2) { function buildSubOperation (line 28596) | function buildSubOperation(num1, num2) { function buildMinOperation (line 28609) | function buildMinOperation(num1, max) { class PostScriptCompiler (line 28617) | class PostScriptCompiler { method compile (line 28618) | compile(code, domain, range) { function isOdd (line 28781) | function isOdd(i) { function isEven (line 28784) | function isEven(i) { function findUnequal (line 28787) | function findUnequal(arr, start, value) { function reverseValues (line 28796) | function reverseValues(arr, start, end) { function createBidiText (line 28803) | function createBidiText(str, isLTR, vertical = false) { function bidi (line 28817) | function bidi(str, startLevel = -1, vertical = false) { constant NORMAL (line 29012) | const NORMAL = { constant BOLD (line 29016) | const BOLD = { constant ITALIC (line 29020) | const ITALIC = { constant BOLDITALIC (line 29024) | const BOLDITALIC = { function getStyleToAppend (line 29139) | function getStyleToAppend(style) { function getFamilyName (line 29157) | function getFamilyName(str) { function generateFont (line 29161) | function generateFont({ function getFontSubstitution (line 29202) | function getFontSubstitution(systemFontCache, idFactory, localFontPath, ... constant SEED (line 29274) | const SEED = 0xc3d2e1f0; constant MASK_HIGH (line 29275) | const MASK_HIGH = 0xffff0000; constant MASK_LOW (line 29276) | const MASK_LOW = 0xffff; class MurmurHash3_64 (line 29277) | class MurmurHash3_64 { method constructor (line 29278) | constructor(seed) { method update (line 29282) | update(input) { method hexdigest (line 29352) | hexdigest() { function addState (line 29368) | function addState(parentState, pattern, checkFn, iterateFn, processFn) { class NullOptimizer (line 29686) | class NullOptimizer { method constructor (line 29687) | constructor(queue) { method _optimize (line 29690) | _optimize() {} method push (line 29691) | push(fn, args) { method flush (line 29696) | flush() {} method reset (line 29697) | reset() {} class QueueOptimizer (line 29699) | class QueueOptimizer extends NullOptimizer { method constructor (line 29700) | constructor(queue) { method isOffscreenCanvasSupported (line 29712) | set isOffscreenCanvasSupported(value) { method _optimize (line 29715) | _optimize() { method flush (line 29759) | flush() { method reset (line 29768) | reset() { class OperatorList (line 29774) | class OperatorList { method constructor (line 29777) | constructor(intent = 0, streamSink) { method isOffscreenCanvasSupported (line 29787) | set isOffscreenCanvasSupported(value) { method length (line 29790) | get length() { method ready (line 29793) | get ready() { method totalLength (line 29796) | get totalLength() { method addOp (line 29799) | addOp(fn, args) { method addImageOps (line 29810) | addImageOps(fn, args, optionalContent, hasMask = false) { method addDependency (line 29826) | addDependency(dependency) { method addDependencies (line 29833) | addDependencies(dependencies) { method addOpList (line 29838) | addOpList(opList) { method getIR (line 29850) | getIR() { method _transfers (line 29857) | get _transfers() { method flush (line 29884) | flush(lastChunk = false, separateAnnots = null) { function resizeImageMask (line 29914) | function resizeImageMask(src, bpc, w1, h1, w2, h2) { class PDFImage (line 29945) | class PDFImage { method constructor (line 29946) | constructor({ method buildImage (line 30123) | static async buildImage({ method createRawMask (line 30162) | static createRawMask({ method createMask (line 30195) | static async createMask({ method drawWidth (line 30259) | get drawWidth() { method drawHeight (line 30262) | get drawHeight() { method decodeBuffer (line 30265) | decodeBuffer(buffer) { method getComponents (line 30286) | getComponents(buffer) { method fillOpacity (line 30361) | async fillOpacity(rgbaBuf, width, height, actualHeight, image) { method undoPreblend (line 30416) | undoPreblend(buffer, width, height) { method createImageData (line 30440) | async createImageData(forceRGBA = false, isOffscreenCanvasSupported = ... method fillGrayBuffer (line 30609) | async fillGrayBuffer(buffer) { method createBitmap (line 30645) | createBitmap(kind, width, height, src) { method #getImage (line 30672) | async #getImage(width, height) { method getImageBytes (line 30685) | async getImageBytes(length, { constant TEXT_CHUNK_BATCH_SIZE (line 30755) | const TEXT_CHUNK_BATCH_SIZE = 10; function normalizeBlendMode (line 30757) | function normalizeBlendMode(value, parsingArray = false) { function addLocallyCachedImageOps (line 30815) | function addLocallyCachedImageOps(opList, data) { class TimeSlotManager (line 30824) | class TimeSlotManager { method constructor (line 30827) | constructor() { method check (line 30830) | check() { method reset (line 30837) | reset() { class PartialEvaluator (line 30842) | class PartialEvaluator { method constructor (line 30843) | constructor({ method _pdfFunctionFactory (line 30871) | get _pdfFunctionFactory() { method parsingType3Font (line 30878) | get parsingType3Font() { method clone (line 30881) | clone(newOptions = null) { method hasBlendModes (line 30886) | hasBlendModes(resources, nonBlendModesSet) { method fetchBuiltInCMap (line 30979) | async fetchBuiltInCMap(name) { method fetchStandardFontData (line 30999) | async fetchStandardFontData(name) { method buildFormXObject (line 31026) | async buildFormXObject(resources, xobj, smask, operatorList, task, ini... method _sendImgData (line 31079) | _sendImgData(objId, imgData, cacheGlobally = false) { method buildPaintImageXObject (line 31086) | async buildPaintImageXObject({ method handleSMask (line 31320) | handleSMask(smask, resources, operatorList, task, stateManager, localC... method handleTransferFunction (line 31342) | handleTransferFunction(tr) { method handleTilingType (line 31382) | handleTilingType(fn, color, resources, pattern, patternDict, operatorL... method handleSetFont (line 31415) | async handleSetFont(resources, fontArgs, fontRef, operatorList, task, ... method handleText (line 31425) | handleText(chars, state) { method ensureStateFont (line 31436) | ensureStateFont(state) { method setGState (line 31447) | async setGState({ method loadFont (line 31537) | loadFont(fontName, font, resources, task, fallbackFontDict = null, css... method buildPath (line 31648) | buildPath(fn, args, state) { method _getColorSpace (line 31724) | _getColorSpace(cs, resources, localColorSpaceCache) { method _handleColorSpace (line 31735) | async _handleColorSpace(csPromise) { method parseShading (line 31749) | parseShading({ method handleColorN (line 31786) | handleColorN(operatorList, fn, args, cs, patterns, resources, task, lo... method _parseVisibilityExpression (line 31825) | _parseVisibilityExpression(array, nestingCounter, currentResult) { method parseMarkedContentProps (line 31859) | async parseMarkedContentProps(contentProperties, resources) { method getOperatorList (line 31912) | getOperatorList({ method getTextContent (line 32403) | getTextContent({ method extractDataStructures (line 33214) | async extractDataStructures(dict, properties) { method _simpleFontToUnicode (line 33314) | _simpleFontToUnicode(properties, forceGlyphs = false) { method buildToUnicode (line 33393) | async buildToUnicode(properties) { method readToUnicode (line 33434) | async readToUnicode(cmapObj) { method readCidToGidMap (line 33495) | readCidToGidMap(glyphsData, toUnicode) { method extractWidths (line 33507) | extractWidths(dict, descriptor, properties) { method isSerifFont (line 33627) | isSerifFont(baseFontName) { method getBaseFontMetrics (line 33631) | getBaseFontMetrics(name) { method buildCharCodeToWidth (line 33654) | buildCharCodeToWidth(widthsByGlyphName, properties) { method preEvaluateFont (line 33670) | preEvaluateFont(dict) { method translateFont (line 33791) | async translateFont({ method buildFontPaths (line 34005) | static buildFontPaths(font, glyphs, handler, evaluatorOptions) { method fallbackFontDict (line 34029) | static get fallbackFontDict() { class TranslatedFont (line 34038) | class TranslatedFont { method constructor (line 34041) | constructor({ method send (line 34051) | send(handler) { method fallback (line 34058) | fallback(handler, evaluatorOptions) { method loadType3Data (line 34065) | loadType3Data(evaluator, resources, task) { method #removeType3ColorOperators (line 34130) | #removeType3ColorOperators(operatorList, fontBBoxSize = NaN) { method #guessType3FontBBox (line 34191) | #guessType3FontBBox(operatorList) { class StateManager (line 34206) | class StateManager { method constructor (line 34207) | constructor(initialState = new EvalState()) { method save (line 34211) | save() { method restore (line 34216) | restore() { method transform (line 34222) | transform(args) { class TextState (line 34226) | class TextState { method constructor (line 34227) | constructor() { method setTextMatrix (line 34242) | setTextMatrix(a, b, c, d, e, f) { method setTextLineMatrix (line 34251) | setTextLineMatrix(a, b, c, d, e, f) { method translateTextMatrix (line 34260) | translateTextMatrix(x, y) { method translateTextLineMatrix (line 34265) | translateTextLineMatrix(x, y) { method carriageReturn (line 34270) | carriageReturn() { method clone (line 34274) | clone() { class EvalState (line 34282) | class EvalState { method constructor (line 34283) | constructor() { method fillColorSpace (line 34294) | get fillColorSpace() { method fillColorSpace (line 34297) | set fillColorSpace(colorSpace) { method strokeColorSpace (line 34300) | get strokeColorSpace() { method strokeColorSpace (line 34303) | set strokeColorSpace(colorSpace) { method clone (line 34306) | clone({ class EvaluatorPreprocessor (line 34317) | class EvaluatorPreprocessor { method opMap (line 34318) | static get opMap() { method constructor (line 34698) | constructor(stream, xref, stateManager = new StateManager()) { method savedStatesDepth (line 34708) | get savedStatesDepth() { method read (line 34711) | read(operation) { method preprocessCommand (line 34777) | preprocessCommand(fn, args) { class DefaultAppearanceEvaluator (line 34801) | class DefaultAppearanceEvaluator extends EvaluatorPreprocessor { method constructor (line 34802) | constructor(str) { method parse (line 34805) | parse() { function parseDefaultAppearance (line 34855) | function parseDefaultAppearance(str) { class AppearanceStreamEvaluator (line 34858) | class AppearanceStreamEvaluator extends EvaluatorPreprocessor { method constructor (line 34859) | constructor(stream, evaluatorOptions, xref, globalColorSpaceCache) { method parse (line 34867) | parse() { method _localColorSpaceCache (line 34955) | get _localColorSpaceCache() { method _pdfFunctionFactory (line 34958) | get _pdfFunctionFactory() { function parseAppearanceStream (line 34966) | function parseAppearanceStream(stream, evaluatorOptions, xref, globalCol... function getPdfColor (line 34969) | function getPdfColor(color, isFill) { function createDefaultAppearance (line 34976) | function createDefaultAppearance({ class FakeUnicodeFont (line 34983) | class FakeUnicodeFont { method constructor (line 34984) | constructor(xref, fontFamily) { method fontDescriptorRef (line 34999) | get fontDescriptorRef() { method descendantFontRef (line 35013) | get descendantFontRef() { method baseFontRef (line 35052) | get baseFontRef() { method resources (line 35062) | get resources() { method _createContext (line 35069) | _createContext() { method createFontResources (line 35074) | createFontResources(text) { method getFirstPositionInfo (line 35091) | static getFirstPositionInfo(rect, rotation, fontSize) { method createAppearance (line 35106) | createAppearance(text, rect, rotation, fontSize, bgColor, strokeAlpha) { class NameOrNumberTree (line 35186) | class NameOrNumberTree { method constructor (line 35187) | constructor(root, xref, type) { method getAll (line 35192) | getAll() { method getRaw (line 35230) | getRaw(key) { method get (line 35285) | get(key) { class NameTree (line 35289) | class NameTree extends NameOrNumberTree { method constructor (line 35290) | constructor(root, xref) { class NumberTree (line 35294) | class NumberTree extends NameOrNumberTree { method constructor (line 35295) | constructor(root, xref) { function clearGlobalCaches (line 35305) | function clearGlobalCaches() { function pickPlatformItem (line 35316) | function pickPlatformItem(dict) { function stripPath (line 35333) | function stripPath(str) { class FileSpec (line 35336) | class FileSpec { method constructor (line 35338) | constructor(root, xref, skipContent = false) { method filename (line 35358) | get filename() { method content (line 35366) | get content() { method description (line 35384) | get description() { method serializable (line 35392) | get serializable() { function isWhitespace (line 35417) | function isWhitespace(s, index) { function isWhitespaceString (line 35421) | function isWhitespaceString(s) { class XMLParserBase (line 35429) | class XMLParserBase { method _resolveEntities (line 35430) | _resolveEntities(s) { method _parseContent (line 35452) | _parseContent(s, start) { method _parseProcessingInstruction (line 35501) | _parseProcessingInstruction(s, start) { method parseXml (line 35524) | parseXml(s) { method onResolveEntity (line 35622) | onResolveEntity(name) { method onPi (line 35625) | onPi(name, value) {} method onComment (line 35626) | onComment(text) {} method onCdata (line 35627) | onCdata(text) {} method onDoctype (line 35628) | onDoctype(doctypeContent) {} method onText (line 35629) | onText(text) {} method onBeginElement (line 35630) | onBeginElement(name, attributes, isEmpty) {} method onEndElement (line 35631) | onEndElement(name) {} method onError (line 35632) | onError(code) {} class SimpleDOMNode (line 35634) | class SimpleDOMNode { method constructor (line 35635) | constructor(nodeName, nodeValue) { method firstChild (line 35643) | get firstChild() { method nextSibling (line 35646) | get nextSibling() { method textContent (line 35657) | get textContent() { method children (line 35663) | get children() { method hasChildNodes (line 35666) | hasChildNodes() { method searchNode (line 35669) | searchNode(paths, pos) { method dump (line 35723) | dump(buffer) { class SimpleXMLParser (line 35747) | class SimpleXMLParser extends XMLParserBase { method constructor (line 35748) | constructor({ method parseFromString (line 35759) | parseFromString(data) { method onText (line 35775) | onText(text) { method onCdata (line 35782) | onCdata(text) { method onBeginElement (line 35786) | onBeginElement(name, attributes, isEmpty) { method onEndElement (line 35802) | onEndElement(name) { method onError (line 35813) | onError(code) { class MetadataParser (line 35820) | class MetadataParser { method constructor (line 35821) | constructor(data) { method _repair (line 35833) | _repair(data) { method _getSequence (line 35864) | _getSequence(entry) { method _parseArray (line 35871) | _parseArray(entry) { method _parse (line 35879) | _parse(xmlDocument) { method serializable (line 35908) | get serializable() { constant MAX_DEPTH (line 35921) | const MAX_DEPTH = 40; class StructTreeRoot (line 35929) | class StructTreeRoot { method constructor (line 35930) | constructor(xref, rootDict, rootRef) { method init (line 35937) | init() { method #addIdToPage (line 35940) | #addIdToPage(pageRef, id, type) { method addAnnotationIdToPage (line 35952) | addAnnotationIdToPage(pageRef, id) { method readRoleMap (line 35955) | readRoleMap() { method canCreateStructureTree (line 35966) | static async canCreateStructureTree({ method createStructureTree (line 36003) | static async createStructureTree({ method canUpdateStructTree (line 36044) | async canUpdateStructTree({ method updateStructureTree (line 36112) | async updateStructureTree({ method #writeKids (line 36169) | static async #writeKids({ method #writeProperties (line 36244) | static #writeProperties(tagDict, { method #collectParents (line 36269) | static #collectParents({ method #updateParentTag (line 36341) | static async #updateParentTag({ class StructElementNode (line 36384) | class StructElementNode { method constructor (line 36385) | constructor(tree, dict) { method role (line 36392) | get role() { method parseKids (line 36400) | parseKids() { method parseKid (line 36421) | parseKid(pageObjId, kid) { class StructElement (line 36469) | class StructElement { method constructor (line 36470) | constructor({ class StructTreePage (line 36485) | class StructTreePage { method constructor (line 36486) | constructor(structTreeRoot, pageDict) { method collectObjects (line 36493) | collectObjects(pageRef) { method parse (line 36515) | parse(pageRef) { method addNode (line 36553) | addNode(dict, map, level = 0) { method addTopLevelNode (line 36589) | addTopLevelNode(dict, element) { method serializable (line 36614) | get serializable() { function fetchDest (line 36698) | function fetchDest(dest) { function fetchRemoteDest (line 36704) | function fetchRemoteDest(action) { class Catalog (line 36718) | class Catalog { method constructor (line 36719) | constructor(pdfManager, xref) { method cloneDict (line 36739) | cloneDict() { method version (line 36742) | get version() { method lang (line 36752) | get lang() { method needsRendering (line 36756) | get needsRendering() { method collection (line 36760) | get collection() { method acroForm (line 36775) | get acroForm() { method acroFormRef (line 36790) | get acroFormRef() { method metadata (line 36794) | get metadata() { method markInfo (line 36820) | get markInfo() { method _readMarkInfo (line 36832) | _readMarkInfo() { method structTreeRoot (line 36850) | get structTreeRoot() { method #readStructTreeRoot (line 36862) | #readStructTreeRoot() { method toplevelPagesDict (line 36872) | get toplevelPagesDict() { method documentOutline (line 36879) | get documentOutline() { method _readDocumentOutline (line 36891) | _readDocumentOutline() { method permissions (line 36974) | get permissions() { method _readPermissions (line 36986) | _readPermissions() { method optionalContentConfig (line 37005) | get optionalContentConfig() { method #readOptionalContentGroup (line 37036) | #readOptionalContentGroup(groupRef) { method #readOptionalContentConfig (line 37092) | #readOptionalContentConfig(config, groupRefCache) { method setActualNumPages (line 37192) | setActualNumPages(num = null) { method hasActualNumPages (line 37195) | get hasActualNumPages() { method _pagesCount (line 37198) | get _pagesCount() { method numPages (line 37205) | get numPages() { method destinations (line 37208) | get destinations() { method getDestination (line 37230) | getDestination(id) { method #readDests (line 37249) | #readDests() { method pageLabels (line 37260) | get pageLabels() { method _readPageLabels (line 37272) | _readPageLabels() { method pageLayout (line 37350) | get pageLayout() { method pageMode (line 37366) | get pageMode() { method viewerPreferences (line 37382) | get viewerPreferences() { method openAction (line 37499) | get openAction() { method attachments (line 37524) | get attachments() { method xfaImages (line 37539) | get xfaImages() { method _collectJavaScript (line 37553) | _collectJavaScript() { method jsActions (line 37586) | get jsActions() { method cleanup (line 37601) | async cleanup(manuallyTriggered = false) { method getPageDict (line 37619) | async getPageDict(pageIndex) { method getAllPageDicts (line 37713) | async getAllPageDicts(recoveryMode = false) { method getPageIndex (line 37811) | getPageIndex(pageRef) { method baseUrl (line 37883) | get baseUrl() { method parseDestDictionary (line 37898) | static parseDestDictionary({ function mayHaveChildren (line 38087) | function mayHaveChildren(value) { function addChildren (line 38090) | function addChildren(node, nodesToVisit) { class ObjectLoader (line 38104) | class ObjectLoader { method constructor (line 38105) | constructor(dict, keys, xref) { method load (line 38111) | async load() { method _walk (line 38129) | async _walk(nodesToVisit) { function stripQuotes (line 38337) | function stripQuotes(str) { function getInteger (line 38343) | function getInteger({ function getFloat (line 38358) | function getFloat({ function getKeyword (line 38373) | function getKeyword({ function getStringOption (line 38387) | function getStringOption(data, options) { function getMeasurement (line 38394) | function getMeasurement(str, def = "0") { function getRatio (line 38417) | function getRatio(data) { function getRelevant (line 38440) | function getRelevant(data) { function getColor (line 38449) | function getColor(data, def = [0, 0, 0]) { function getBBox (line 38473) | function getBBox(data) { class HTMLResult (line 38500) | class HTMLResult { method FAILURE (line 38501) | static get FAILURE() { method EMPTY (line 38504) | static get EMPTY() { method constructor (line 38507) | constructor(success, html, bbox, breakNode) { method isBreak (line 38513) | isBreak() { method breakNode (line 38516) | static breakNode(node) { method success (line 38519) | static success(html, bbox = null) { class FontFinder (line 38528) | class FontFinder { method constructor (line 38529) | constructor(pdfFonts) { method add (line 38536) | add(pdfFonts, reallyMissingFonts = null) { method addPdfFont (line 38553) | addPdfFont(pdfFont) { method getDefault (line 38584) | getDefault() { method find (line 38587) | find(fontName, mustWarn = true) { function selectFont (line 38642) | function selectFont(xfaFont, typeface) { function fonts_getMetrics (line 38653) | function fonts_getMetrics(xfaFont, real = false) { constant WIDTH_FACTOR (line 38679) | const WIDTH_FACTOR = 1.02; class FontInfo (line 38680) | class FontInfo { method constructor (line 38681) | constructor(xfaFont, margin, lineHeight, fontFinder) { method defaultFont (line 38710) | defaultFont(fontFinder) { class FontSelector (line 38734) | class FontSelector { method constructor (line 38735) | constructor(defaultXfaFont, defaultParaMargin, defaultLineHeight, font... method pushData (line 38739) | pushData(xfaFont, margin, lineHeight) { method popFont (line 38757) | popFont() { method topFont (line 38760) | topFont() { class TextMeasure (line 38764) | class TextMeasure { method constructor (line 38765) | constructor(defaultXfaFont, defaultParaMargin, defaultLineHeight, font... method pushData (line 38770) | pushData(xfaFont, margin, lineHeight) { method popFont (line 38773) | popFont(xfaFont) { method addPara (line 38776) | addPara() { method addString (line 38780) | addString(str) { method compute (line 38816) | compute(maxWidth) { function parseIndex (line 38901) | function parseIndex(index) { function parseExpression (line 38908) | function parseExpression(expr, dotDotAllowed, noExpr = true) { function searchNode (line 38984) | function searchNode(root, container, expr, dotDotAllowed = true, useCach... function createDataNode (line 39061) | function createDataNode(root, container, expr) { constant NS_DATASETS (line 39145) | const NS_DATASETS = NamespaceIds.datasets.id; class XFAObject (line 39146) | class XFAObject { method constructor (line 39147) | constructor(nsId, name, hasChildren = false) { method isXFAObject (line 39156) | get isXFAObject() { method isXFAObjectArray (line 39159) | get isXFAObjectArray() { method createNodes (line 39162) | createNodes(path) { method [$onChild] (line 39178) | [$onChild](child) { method [$onChildCheck] (line 39206) | [$onChildCheck](child) { method [$isNsAgnostic] (line 39209) | [$isNsAgnostic]() { method [$acceptWhitespace] (line 39212) | [$acceptWhitespace]() { method [$isCDATAXml] (line 39215) | [$isCDATAXml]() { method [$isBindable] (line 39218) | [$isBindable]() { method [$popPara] (line 39221) | [$popPara]() { method [$pushPara] (line 39226) | [$pushPara]() { method [$setId] (line 39229) | [$setId](ids) { method [$getTemplateRoot] (line 39234) | [$getTemplateRoot]() { method [$isSplittable] (line 39237) | [$isSplittable]() { method [$isThereMoreWidth] (line 39240) | [$isThereMoreWidth]() { method [$appendChild] (line 39243) | [$appendChild](child) { method [$removeChild] (line 39250) | [$removeChild](child) { method [$hasSettableValue] (line 39254) | [$hasSettableValue]() { method [$setValue] (line 39257) | [$setValue](_) {} method [$onText] (line 39258) | [$onText](_) {} method [$finalize] (line 39259) | [$finalize]() {} method [$clean] (line 39260) | [$clean](builder) { method [$indexOf] (line 39267) | [$indexOf](child) { method [$insertAt] (line 39270) | [$insertAt](i, child) { method [$isTransparent] (line 39277) | [$isTransparent]() { method [$lastAttribute] (line 39280) | [$lastAttribute]() { method [$text] (line 39283) | [$text]() { method [_attributeNames] (line 39289) | get [_attributeNames]() { method [$isDescendent] (line 39302) | [$isDescendent](parent) { method [$getParent] (line 39312) | [$getParent]() { method [$getSubformParent] (line 39315) | [$getSubformParent]() { method [$getChildren] (line 39318) | [$getChildren](name = null) { method [$dump] (line 39324) | [$dump]() { method [$toStyle] (line 39346) | [$toStyle]() { method [$toHTML] (line 39349) | [$toHTML]() { method [$getContainedChildren] (line 39352) | *[$getContainedChildren]() { method [_filteredChildrenGenerator] (line 39357) | *[_filteredChildrenGenerator](filter, include) { method [$flushHTML] (line 39369) | [$flushHTML]() { method [$addHTML] (line 39372) | [$addHTML](html, bbox) { method [$getAvailableSpace] (line 39375) | [$getAvailableSpace]() {} method [$childrenToHTML] (line 39376) | [$childrenToHTML]({ method [$setSetAttributes] (line 39409) | [$setSetAttributes](attributes) { method [_getUnsetAttributes] (line 39412) | [_getUnsetAttributes](protoAttributes) { method [$resolvePrototypes] (line 39417) | [$resolvePrototypes](ids, ancestors = new Set()) { method [_resolvePrototypesHelper] (line 39422) | [_resolvePrototypesHelper](ids, ancestors) { method [_getPrototype] (line 39430) | [_getPrototype](ids, ancestors) { method [_applyPrototype] (line 39488) | [_applyPrototype](proto, ids, ancestors) { method [_cloneAttribute] (line 39542) | static [_cloneAttribute](obj) { method [$clone] (line 39551) | [$clone]() { method [$getChildren] (line 39583) | [$getChildren](name = null) { method [$getChildrenByClass] (line 39589) | [$getChildrenByClass](name) { method [$getChildrenByName] (line 39592) | [$getChildrenByName](name, allTransparent, first = true) { method [$getChildrenByNameIt] (line 39595) | *[$getChildrenByNameIt](name, allTransparent, first = true) { class XFAObjectArray (line 39616) | class XFAObjectArray { method constructor (line 39617) | constructor(max = Infinity) { method isXFAObject (line 39621) | get isXFAObject() { method isXFAObjectArray (line 39624) | get isXFAObjectArray() { method push (line 39627) | push(child) { method isEmpty (line 39636) | isEmpty() { method dump (line 39639) | dump() { method [$clone] (line 39642) | [$clone]() { method children (line 39647) | get children() { method clear (line 39650) | clear() { class XFAAttribute (line 39654) | class XFAAttribute { method constructor (line 39655) | constructor(node, name, value) { method [$getParent] (line 39662) | [$getParent]() { method [$isDataValue] (line 39665) | [$isDataValue]() { method [$getDataValue] (line 39668) | [$getDataValue]() { method [$setValue] (line 39671) | [$setValue](value) { method [$text] (line 39675) | [$text]() { method [$isDescendent] (line 39678) | [$isDescendent](parent) { class XmlObject (line 39682) | class XmlObject extends XFAObject { method constructor (line 39683) | constructor(nsId, name, attributes = {}) { method [$toString] (line 39706) | [$toString](buf) { method [$onChild] (line 39744) | [$onChild](child) { method [$onText] (line 39754) | [$onText](str) { method [$finalize] (line 39757) | [$finalize]() { method [$toHTML] (line 39765) | [$toHTML]() { method [$getChildren] (line 39774) | [$getChildren](name = null) { method [$getAttributes] (line 39780) | [$getAttributes]() { method [$getChildrenByClass] (line 39783) | [$getChildrenByClass](name) { method [$getChildrenByNameIt] (line 39790) | *[$getChildrenByNameIt](name, allTransparent) { method [$getAttributeIt] (line 39804) | *[$getAttributeIt](name, skipConsumed) { method [$getRealChildrenByNameIt] (line 39813) | *[$getRealChildrenByNameIt](name, allTransparent, skipConsumed) { method [$isDataValue] (line 39823) | [$isDataValue]() { method [$getDataValue] (line 39829) | [$getDataValue]() { method [$setValue] (line 39841) | [$setValue](value) { method [$dump] (line 39845) | [$dump](hasNS = false) { class ContentObject (line 39865) | class ContentObject extends XFAObject { method constructor (line 39866) | constructor(nsId, name) { method [$onText] (line 39870) | [$onText](text) { method [$finalize] (line 39873) | [$finalize]() {} class OptionObject (line 39875) | class OptionObject extends ContentObject { method constructor (line 39876) | constructor(nsId, name, options) { method [$finalize] (line 39880) | [$finalize]() { method [$clean] (line 39887) | [$clean](builder) { class StringObject (line 39892) | class StringObject extends ContentObject { method [$finalize] (line 39893) | [$finalize]() { class IntegerObject (line 39897) | class IntegerObject extends ContentObject { method constructor (line 39898) | constructor(nsId, name, defaultValue, validator) { method [$finalize] (line 39903) | [$finalize]() { method [$clean] (line 39910) | [$clean](builder) { class Option01 (line 39916) | class Option01 extends IntegerObject { method constructor (line 39917) | constructor(nsId, name) { class Option10 (line 39921) | class Option10 extends IntegerObject { method constructor (line 39922) | constructor(nsId, name) { function measureToString (line 39934) | function measureToString(m) { method anchorType (line 39941) | anchorType(node, style) { method dimensions (line 39976) | dimensions(node, style) { method position (line 39998) | position(node, style) { method rotate (line 40007) | rotate(node, style) { method presence (line 40016) | presence(node, style) { method hAlign (line 40027) | hAlign(node, style) { method margin (line 40053) | margin(node, style) { function setMinMaxDimensions (line 40059) | function setMinMaxDimensions(node, style) { function layoutText (line 40076) | function layoutText(text, xfaFont, margin, lineHeight, fontFinder, width) { function layoutNode (line 40085) | function layoutNode(node, availableSpace) { function computeBbox (line 40147) | function computeBbox(node, html, availableSpace) { function fixDimensions (line 40179) | function fixDimensions(node) { function layoutClass (line 40203) | function layoutClass(node) { function toStyle (line 40223) | function toStyle(node, ...names) { function createWrapper (line 40245) | function createWrapper(node, html) { function fixTextIndent (line 40330) | function fixTextIndent(styles) { function setAccess (line 40340) | function setAccess(node, classNames) { function isPrintOnly (line 40353) | function isPrintOnly(node) { function getCurrentPara (line 40356) | function getCurrentPara(node) { function setPara (line 40360) | function setPara(node, nodeStyle, value) { function setFontFamily (line 40395) | function setFontFamily(xfaFont, node, fontFinder, style) { function fixURL (line 40423) | function fixURL(str) { function createLine (line 40435) | function createLine(node, children) { function flushHTML (line 40444) | function flushHTML(node) { function addHTML (line 40469) | function addHTML(node, html, bbox) { function getAvailableSpace (line 40529) | function getAvailableSpace(node) { function getTransformedBBox (line 40564) | function getTransformedBBox(node) { function checkDimensions (line 40614) | function checkDimensions(node, space) { constant TEMPLATE_NS_ID (line 40711) | const TEMPLATE_NS_ID = NamespaceIds.template.id; constant SVG_NS (line 40712) | const SVG_NS = "http://www.w3.org/2000/svg"; constant MAX_ATTEMPTS_FOR_LRTB_LAYOUT (line 40713) | const MAX_ATTEMPTS_FOR_LRTB_LAYOUT = 2; constant MAX_EMPTY_PAGES (line 40714) | const MAX_EMPTY_PAGES = 3; constant DEFAULT_TAB_INDEX (line 40715) | const DEFAULT_TAB_INDEX = 5000; constant HEADING_PATTERN (line 40716) | const HEADING_PATTERN = /^H(\d+)$/; constant MIMES (line 40717) | const MIMES = new Set(["image/gif", "image/jpeg", "image/jpg", "image/pj... constant IMAGES_HEADERS (line 40718) | const IMAGES_HEADERS = [[[0x42, 0x4d], "image/bmp"], [[0xff, 0xd8, 0xff]... function getBorderDims (line 40719) | function getBorderDims(node) { function hasMargin (line 40738) | function hasMargin(node) { function _setValue (line 40741) | function _setValue(templateNode, value) { function isRequired (line 40758) | function isRequired(node) { function setTabIndex (line 40761) | function setTabIndex(node) { function applyAssist (line 40790) | function applyAssist(obj, attributes) { function ariaLabel (line 40817) | function ariaLabel(obj) { function valueToHtml (line 40830) | function valueToHtml(value) { function setFirstUnsplittable (line 40846) | function setFirstUnsplittable(node) { function unsetFirstUnsplittable (line 40853) | function unsetFirstUnsplittable(node) { function handleBreak (line 40859) | function handleBreak(node) { function handleOverflow (line 40922) | function handleOverflow(node, extraNode, space) { class AppearanceFilter (line 40933) | class AppearanceFilter extends StringObject { method constructor (line 40934) | constructor(attributes) { class Arc (line 40942) | class Arc extends XFAObject { method constructor (line 40943) | constructor(attributes) { method [$toHTML] (line 40967) | [$toHTML]() { class Area (line 41041) | class Area extends XFAObject { method constructor (line 41042) | constructor(attributes) { method [$getContainedChildren] (line 41066) | *[$getContainedChildren]() { method [$isTransparent] (line 41069) | [$isTransparent]() { method [$isBindable] (line 41072) | [$isBindable]() { method [$addHTML] (line 41075) | [$addHTML](html, bbox) { method [$getAvailableSpace] (line 41081) | [$getAvailableSpace]() { method [$toHTML] (line 41084) | [$toHTML](availableSpace) { class Assist (line 41127) | class Assist extends XFAObject { method constructor (line 41128) | constructor(attributes) { method [$toHTML] (line 41137) | [$toHTML]() { class Barcode (line 41141) | class Barcode extends XFAObject { method constructor (line 41142) | constructor(attributes) { class Bind (line 41197) | class Bind extends XFAObject { method constructor (line 41198) | constructor(attributes) { class BindItems (line 41205) | class BindItems extends XFAObject { method constructor (line 41206) | constructor(attributes) { class Bookend (line 41214) | class Bookend extends XFAObject { method constructor (line 41215) | constructor(attributes) { class BooleanElement (line 41224) | class BooleanElement extends Option01 { method constructor (line 41225) | constructor(attributes) { method [$toHTML] (line 41232) | [$toHTML](availableSpace) { class Border (line 41236) | class Border extends XFAObject { method constructor (line 41237) | constructor(attributes) { method [$getExtra] (line 41252) | [$getExtra]() { method [$toStyle] (line 41277) | [$toStyle]() { class Break (line 41320) | class Break extends XFAObject { method constructor (line 41321) | constructor(attributes) { class BreakAfter (line 41343) | class BreakAfter extends XFAObject { method constructor (line 41344) | constructor(attributes) { class BreakBefore (line 41361) | class BreakBefore extends XFAObject { method constructor (line 41362) | constructor(attributes) { method [$toHTML] (line 41378) | [$toHTML](availableSpace) { class Button (line 41383) | class Button extends XFAObject { method constructor (line 41384) | constructor(attributes) { method [$toHTML] (line 41392) | [$toHTML](availableSpace) { class Calculate (line 41431) | class Calculate extends XFAObject { method constructor (line 41432) | constructor(attributes) { class Caption (line 41443) | class Caption extends XFAObject { method constructor (line 41444) | constructor(attributes) { method [$setValue] (line 41458) | [$setValue](value) { method [$getExtra] (line 41461) | [$getExtra](availableSpace) { method [$toHTML] (line 41485) | [$toHTML](availableSpace) { class Certificate (line 41550) | class Certificate extends StringObject { method constructor (line 41551) | constructor(attributes) { class Certificates (line 41559) | class Certificates extends XFAObject { method constructor (line 41560) | constructor(attributes) { class CheckButton (line 41576) | class CheckButton extends XFAObject { method constructor (line 41577) | constructor(attributes) { method [$toHTML] (line 41589) | [$toHTML](availableSpace) { class ChoiceList (line 41648) | class ChoiceList extends XFAObject { method constructor (line 41649) | constructor(attributes) { method [$toHTML] (line 41665) | [$toHTML](availableSpace) { class Color (line 41739) | class Color extends XFAObject { method constructor (line 41740) | constructor(attributes) { method [$hasSettableValue] (line 41749) | [$hasSettableValue]() { method [$toStyle] (line 41752) | [$toStyle]() { class Comb (line 41756) | class Comb extends XFAObject { method constructor (line 41757) | constructor(attributes) { class Connect (line 41769) | class Connect extends XFAObject { method constructor (line 41770) | constructor(attributes) { class ContentArea (line 41781) | class ContentArea extends XFAObject { method constructor (line 41782) | constructor(attributes) { method [$toHTML] (line 41796) | [$toHTML](availableSpace) { class Corner (line 41820) | class Corner extends XFAObject { method constructor (line 41821) | constructor(attributes) { method [$toStyle] (line 41839) | [$toStyle]() { class DateElement (line 41845) | class DateElement extends ContentObject { method constructor (line 41846) | constructor(attributes) { method [$finalize] (line 41853) | [$finalize]() { method [$toHTML] (line 41857) | [$toHTML](availableSpace) { class DateTime (line 41861) | class DateTime extends ContentObject { method constructor (line 41862) | constructor(attributes) { method [$finalize] (line 41869) | [$finalize]() { method [$toHTML] (line 41873) | [$toHTML](availableSpace) { class DateTimeEdit (line 41877) | class DateTimeEdit extends XFAObject { method constructor (line 41878) | constructor(attributes) { method [$toHTML] (line 41890) | [$toHTML](availableSpace) { class Decimal (line 41918) | class Decimal extends ContentObject { method constructor (line 41919) | constructor(attributes) { method [$finalize] (line 41936) | [$finalize]() { method [$toHTML] (line 41940) | [$toHTML](availableSpace) { class DefaultUi (line 41944) | class DefaultUi extends XFAObject { method constructor (line 41945) | constructor(attributes) { class Desc (line 41953) | class Desc extends XFAObject { method constructor (line 41954) | constructor(attributes) { class DigestMethod (line 41971) | class DigestMethod extends OptionObject { method constructor (line 41972) | constructor(attributes) { class DigestMethods (line 41979) | class DigestMethods extends XFAObject { method constructor (line 41980) | constructor(attributes) { class Draw (line 41989) | class Draw extends XFAObject { method constructor (line 41990) | constructor(attributes) { method [$setValue] (line 42033) | [$setValue](value) { method [$toHTML] (line 42036) | [$toHTML](availableSpace) { class Edge (line 42111) | class Edge extends XFAObject { method constructor (line 42112) | constructor(attributes) { method [$toStyle] (line 42124) | [$toStyle]() { class Encoding (line 42168) | class Encoding extends OptionObject { method constructor (line 42169) | constructor(attributes) { class Encodings (line 42176) | class Encodings extends XFAObject { method constructor (line 42177) | constructor(attributes) { class Encrypt (line 42186) | class Encrypt extends XFAObject { method constructor (line 42187) | constructor(attributes) { class EncryptData (line 42195) | class EncryptData extends XFAObject { method constructor (line 42196) | constructor(attributes) { class Encryption (line 42207) | class Encryption extends XFAObject { method constructor (line 42208) | constructor(attributes) { class EncryptionMethod (line 42217) | class EncryptionMethod extends OptionObject { method constructor (line 42218) | constructor(attributes) { class EncryptionMethods (line 42225) | class EncryptionMethods extends XFAObject { method constructor (line 42226) | constructor(attributes) { class Event (line 42235) | class Event extends XFAObject { method constructor (line 42236) | constructor(attributes) { class ExData (line 42253) | class ExData extends ContentObject { method constructor (line 42254) | constructor(attributes) { method [$isCDATAXml] (line 42270) | [$isCDATAXml]() { method [$onChild] (line 42273) | [$onChild](child) { method [$toHTML] (line 42284) | [$toHTML](availableSpace) { class ExObject (line 42291) | class ExObject extends XFAObject { method constructor (line 42292) | constructor(attributes) { class ExclGroup (line 42316) | class ExclGroup extends XFAObject { method constructor (line 42317) | constructor(attributes) { method [$isBindable] (line 42359) | [$isBindable]() { method [$hasSettableValue] (line 42362) | [$hasSettableValue]() { method [$setValue] (line 42365) | [$setValue](value) { method [$isThereMoreWidth] (line 42375) | [$isThereMoreWidth]() { method [$isSplittable] (line 42378) | [$isSplittable]() { method [$flushHTML] (line 42396) | [$flushHTML]() { method [$addHTML] (line 42399) | [$addHTML](html, bbox) { method [$getAvailableSpace] (line 42402) | [$getAvailableSpace]() { method [$toHTML] (line 42405) | [$toHTML](availableSpace) { class Execute (line 42522) | class Execute extends XFAObject { method constructor (line 42523) | constructor(attributes) { class Extras (line 42533) | class Extras extends XFAObject { method constructor (line 42534) | constructor(attributes) { class Field (line 42553) | class Field extends XFAObject { method constructor (line 42554) | constructor(attributes) { method [$isBindable] (line 42607) | [$isBindable]() { method [$setValue] (line 42610) | [$setValue](value) { method [$toHTML] (line 42613) | [$toHTML](availableSpace) { class Fill (line 42871) | class Fill extends XFAObject { method constructor (line 42872) | constructor(attributes) { method [$toStyle] (line 42886) | [$toStyle]() { class Filter (line 42925) | class Filter extends XFAObject { method constructor (line 42926) | constructor(attributes) { class Float (line 42950) | class Float extends ContentObject { method constructor (line 42951) | constructor(attributes) { method [$finalize] (line 42958) | [$finalize]() { method [$toHTML] (line 42962) | [$toHTML](availableSpace) { class template_Font (line 42966) | class template_Font extends XFAObject { method constructor (line 42967) | constructor(attributes) { method [$clean] (line 43010) | [$clean](builder) { method [$toStyle] (line 43014) | [$toStyle]() { class Format (line 43056) | class Format extends XFAObject { method constructor (line 43057) | constructor(attributes) { class Handler (line 43066) | class Handler extends StringObject { method constructor (line 43067) | constructor(attributes) { class Hyphenation (line 43075) | class Hyphenation extends XFAObject { method constructor (line 43076) | constructor(attributes) { class Image (line 43113) | class Image extends StringObject { method constructor (line 43114) | constructor(attributes) { method [$toHTML] (line 43125) | [$toHTML]() { class ImageEdit (line 43190) | class ImageEdit extends XFAObject { method constructor (line 43191) | constructor(attributes) { method [$toHTML] (line 43201) | [$toHTML](availableSpace) { class Integer (line 43212) | class Integer extends ContentObject { method constructor (line 43213) | constructor(attributes) { method [$finalize] (line 43220) | [$finalize]() { method [$toHTML] (line 43224) | [$toHTML](availableSpace) { class Issuers (line 43228) | class Issuers extends XFAObject { method constructor (line 43229) | constructor(attributes) { class Items (line 43238) | class Items extends XFAObject { method constructor (line 43239) | constructor(attributes) { method [$toHTML] (line 43263) | [$toHTML]() { class Keep (line 43271) | class Keep extends XFAObject { method constructor (line 43272) | constructor(attributes) { class KeyUsage (line 43284) | class KeyUsage extends XFAObject { method constructor (line 43285) | constructor(attributes) { class Line (line 43303) | class Line extends XFAObject { method constructor (line 43304) | constructor(attributes) { method [$toHTML] (line 43313) | [$toHTML]() { class Linear (line 43375) | class Linear extends XFAObject { method constructor (line 43376) | constructor(attributes) { method [$toStyle] (line 43385) | [$toStyle](startColor) { class LockDocument (line 43392) | class LockDocument extends ContentObject { method constructor (line 43393) | constructor(attributes) { method [$finalize] (line 43400) | [$finalize]() { class Manifest (line 43404) | class Manifest extends XFAObject { method constructor (line 43405) | constructor(attributes) { class Margin (line 43416) | class Margin extends XFAObject { method constructor (line 43417) | constructor(attributes) { method [$toStyle] (line 43428) | [$toStyle]() { class Mdp (line 43434) | class Mdp extends XFAObject { method constructor (line 43435) | constructor(attributes) { class Medium (line 43448) | class Medium extends XFAObject { method constructor (line 43449) | constructor(attributes) { class Message (line 43463) | class Message extends XFAObject { method constructor (line 43464) | constructor(attributes) { class NumericEdit (line 43472) | class NumericEdit extends XFAObject { method constructor (line 43473) | constructor(attributes) { method [$toHTML] (line 43484) | [$toHTML](availableSpace) { class Occur (line 43512) | class Occur extends XFAObject { method constructor (line 43513) | constructor(attributes) { method [$clean] (line 43535) | [$clean]() { class Oid (line 43556) | class Oid extends StringObject { method constructor (line 43557) | constructor(attributes) { class Oids (line 43565) | class Oids extends XFAObject { method constructor (line 43566) | constructor(attributes) { class Overflow (line 43575) | class Overflow extends XFAObject { method constructor (line 43576) | constructor(attributes) { method [$getExtra] (line 43585) | [$getExtra]() { class PageArea (line 43603) | class PageArea extends XFAObject { method constructor (line 43604) | constructor(attributes) { method [$isUsable] (line 43635) | [$isUsable]() { method [$cleanPage] (line 43644) | [$cleanPage]() { method [$getNextPage] (line 43647) | [$getNextPage]() { method [$getAvailableSpace] (line 43662) | [$getAvailableSpace]() { method [$toHTML] (line 43668) | [$toHTML]() { class PageSet (line 43716) | class PageSet extends XFAObject { method constructor (line 43717) | constructor(attributes) { method [$cleanPage] (line 43731) | [$cleanPage]() { method [$isUsable] (line 43739) | [$isUsable]() { method [$getNextPage] (line 43742) | [$getNextPage]() { class Para (line 43791) | class Para extends XFAObject { method constructor (line 43792) | constructor(attributes) { method [$toStyle] (line 43821) | [$toStyle]() { class PasswordEdit (line 43852) | class PasswordEdit extends XFAObject { method constructor (line 43853) | constructor(attributes) { class template_Pattern (line 43865) | class template_Pattern extends XFAObject { method constructor (line 43866) | constructor(attributes) { method [$toStyle] (line 43875) | [$toStyle](startColor) { class Picture (line 43898) | class Picture extends StringObject { method constructor (line 43899) | constructor(attributes) { class Proto (line 43906) | class Proto extends XFAObject { method constructor (line 43907) | constructor(attributes) { class Radial (line 44021) | class Radial extends XFAObject { method constructor (line 44022) | constructor(attributes) { method [$toStyle] (line 44031) | [$toStyle](startColor) { class Reason (line 44038) | class Reason extends StringObject { method constructor (line 44039) | constructor(attributes) { class Reasons (line 44047) | class Reasons extends XFAObject { method constructor (line 44048) | constructor(attributes) { class Rectangle (line 44057) | class Rectangle extends XFAObject { method constructor (line 44058) | constructor(attributes) { method [$toHTML] (line 44068) | [$toHTML]() { class RefElement (line 44124) | class RefElement extends StringObject { method constructor (line 44125) | constructor(attributes) { class Script (line 44132) | class Script extends StringObject { method constructor (line 44133) | constructor(attributes) { class SetProperty (line 44144) | class SetProperty extends XFAObject { method constructor (line 44145) | constructor(attributes) { class SignData (line 44152) | class SignData extends XFAObject { method constructor (line 44153) | constructor(attributes) { class Signature (line 44165) | class Signature extends XFAObject { method constructor (line 44166) | constructor(attributes) { class Signing (line 44179) | class Signing extends XFAObject { method constructor (line 44180) | constructor(attributes) { class Solid (line 44189) | class Solid extends XFAObject { method constructor (line 44190) | constructor(attributes) { method [$toStyle] (line 44197) | [$toStyle](startColor) { class Speak (line 44201) | class Speak extends StringObject { method constructor (line 44202) | constructor(attributes) { class Stipple (line 44216) | class Stipple extends XFAObject { method constructor (line 44217) | constructor(attributes) { method [$toStyle] (line 44230) | [$toStyle](bgColor) { class Subform (line 44235) | class Subform extends XFAObject { method constructor (line 44236) | constructor(attributes) { method [$getSubformParent] (line 44302) | [$getSubformParent]() { method [$isBindable] (line 44309) | [$isBindable]() { method [$isThereMoreWidth] (line 44312) | [$isThereMoreWidth]() { method [$getContainedChildren] (line 44315) | *[$getContainedChildren]() { method [$flushHTML] (line 44318) | [$flushHTML]() { method [$addHTML] (line 44321) | [$addHTML](html, bbox) { method [$getAvailableSpace] (line 44324) | [$getAvailableSpace]() { method [$isSplittable] (line 44327) | [$isSplittable]() { method [$toHTML] (line 44349) | [$toHTML](availableSpace) { class SubformSet (line 44540) | class SubformSet extends XFAObject { method constructor (line 44541) | constructor(attributes) { method [$getContainedChildren] (line 44560) | *[$getContainedChildren]() { method [$getSubformParent] (line 44563) | [$getSubformParent]() { method [$isBindable] (line 44570) | [$isBindable]() { class SubjectDN (line 44574) | class SubjectDN extends ContentObject { method constructor (line 44575) | constructor(attributes) { method [$finalize] (line 44583) | [$finalize]() { class SubjectDNs (line 44591) | class SubjectDNs extends XFAObject { method constructor (line 44592) | constructor(attributes) { class Submit (line 44601) | class Submit extends XFAObject { method constructor (line 44602) | constructor(attributes) { class Template (line 44625) | class Template extends XFAObject { method constructor (line 44626) | constructor(attributes) { method [$finalize] (line 44632) | [$finalize]() { method [$isSplittable] (line 44641) | [$isSplittable]() { method [$searchNode] (line 44644) | [$searchNode](expr, container) { method [$toPages] (line 44650) | *[$toPages]() { class Text (line 44846) | class Text extends ContentObject { method constructor (line 44847) | constructor(attributes) { method [$acceptWhitespace] (line 44860) | [$acceptWhitespace]() { method [$onChild] (line 44863) | [$onChild](child) { method [$onText] (line 44871) | [$onText](str) { method [$finalize] (line 44877) | [$finalize]() { method [$getExtra] (line 44882) | [$getExtra]() { method [$toHTML] (line 44888) | [$toHTML](availableSpace) { class TextEdit (line 44922) | class TextEdit extends XFAObject { method constructor (line 44923) | constructor(attributes) { method [$toHTML] (line 44945) | [$toHTML](availableSpace) { class Time (line 44991) | class Time extends StringObject { method constructor (line 44992) | constructor(attributes) { method [$finalize] (line 44999) | [$finalize]() { method [$toHTML] (line 45003) | [$toHTML](availableSpace) { class TimeStamp (line 45007) | class TimeStamp extends XFAObject { method constructor (line 45008) | constructor(attributes) { class ToolTip (line 45017) | class ToolTip extends StringObject { method constructor (line 45018) | constructor(attributes) { class Traversal (line 45026) | class Traversal extends XFAObject { method constructor (line 45027) | constructor(attributes) { class Traverse (line 45036) | class Traverse extends XFAObject { method constructor (line 45037) | constructor(attributes) { method name (line 45047) | get name() { method [$isTransparent] (line 45050) | [$isTransparent]() { class Ui (line 45054) | class Ui extends XFAObject { method constructor (line 45055) | constructor(attributes) { method [$getExtra] (line 45074) | [$getExtra]() { method [$toHTML] (line 45091) | [$toHTML](availableSpace) { class Validate (line 45099) | class Validate extends XFAObject { method constructor (line 45100) | constructor(attributes) { class Value (line 45114) | class Value extends XFAObject { method constructor (line 45115) | constructor(attributes) { method [$setValue] (line 45140) | [$setValue](value) { method [$text] (line 45167) | [$text]() { method [$toHTML] (line 45185) | [$toHTML](availableSpace) { class Variables (line 45196) | class Variables extends XFAObject { method constructor (line 45197) | constructor(attributes) { method [$isTransparent] (line 45215) | [$isTransparent]() { class TemplateNamespace (line 45219) | class TemplateNamespace { method [$buildXFAObject] (line 45220) | static [$buildXFAObject](name, attributes) { method appearanceFilter (line 45228) | static appearanceFilter(attrs) { method arc (line 45231) | static arc(attrs) { method area (line 45234) | static area(attrs) { method assist (line 45237) | static assist(attrs) { method barcode (line 45240) | static barcode(attrs) { method bind (line 45243) | static bind(attrs) { method bindItems (line 45246) | static bindItems(attrs) { method bookend (line 45249) | static bookend(attrs) { method boolean (line 45252) | static boolean(attrs) { method border (line 45255) | static border(attrs) { method break (line 45258) | static break(attrs) { method breakAfter (line 45261) | static breakAfter(attrs) { method breakBefore (line 45264) | static breakBefore(attrs) { method button (line 45267) | static button(attrs) { method calculate (line 45270) | static calculate(attrs) { method caption (line 45273) | static caption(attrs) { method certificate (line 45276) | static certificate(attrs) { method certificates (line 45279) | static certificates(attrs) { method checkButton (line 45282) | static checkButton(attrs) { method choiceList (line 45285) | static choiceList(attrs) { method color (line 45288) | static color(attrs) { method comb (line 45291) | static comb(attrs) { method connect (line 45294) | static connect(attrs) { method contentArea (line 45297) | static contentArea(attrs) { method corner (line 45300) | static corner(attrs) { method date (line 45303) | static date(attrs) { method dateTime (line 45306) | static dateTime(attrs) { method dateTimeEdit (line 45309) | static dateTimeEdit(attrs) { method decimal (line 45312) | static decimal(attrs) { method defaultUi (line 45315) | static defaultUi(attrs) { method desc (line 45318) | static desc(attrs) { method digestMethod (line 45321) | static digestMethod(attrs) { method digestMethods (line 45324) | static digestMethods(attrs) { method draw (line 45327) | static draw(attrs) { method edge (line 45330) | static edge(attrs) { method encoding (line 45333) | static encoding(attrs) { method encodings (line 45336) | static encodings(attrs) { method encrypt (line 45339) | static encrypt(attrs) { method encryptData (line 45342) | static encryptData(attrs) { method encryption (line 45345) | static encryption(attrs) { method encryptionMethod (line 45348) | static encryptionMethod(attrs) { method encryptionMethods (line 45351) | static encryptionMethods(attrs) { method event (line 45354) | static event(attrs) { method exData (line 45357) | static exData(attrs) { method exObject (line 45360) | static exObject(attrs) { method exclGroup (line 45363) | static exclGroup(attrs) { method execute (line 45366) | static execute(attrs) { method extras (line 45369) | static extras(attrs) { method field (line 45372) | static field(attrs) { method fill (line 45375) | static fill(attrs) { method filter (line 45378) | static filter(attrs) { method float (line 45381) | static float(attrs) { method font (line 45384) | static font(attrs) { method format (line 45387) | static format(attrs) { method handler (line 45390) | static handler(attrs) { method hyphenation (line 45393) | static hyphenation(attrs) { method image (line 45396) | static image(attrs) { method imageEdit (line 45399) | static imageEdit(attrs) { method integer (line 45402) | static integer(attrs) { method issuers (line 45405) | static issuers(attrs) { method items (line 45408) | static items(attrs) { method keep (line 45411) | static keep(attrs) { method keyUsage (line 45414) | static keyUsage(attrs) { method line (line 45417) | static line(attrs) { method linear (line 45420) | static linear(attrs) { method lockDocument (line 45423) | static lockDocument(attrs) { method manifest (line 45426) | static manifest(attrs) { method margin (line 45429) | static margin(attrs) { method mdp (line 45432) | static mdp(attrs) { method medium (line 45435) | static medium(attrs) { method message (line 45438) | static message(attrs) { method numericEdit (line 45441) | static numericEdit(attrs) { method occur (line 45444) | static occur(attrs) { method oid (line 45447) | static oid(attrs) { method oids (line 45450) | static oids(attrs) { method overflow (line 45453) | static overflow(attrs) { method pageArea (line 45456) | static pageArea(attrs) { method pageSet (line 45459) | static pageSet(attrs) { method para (line 45462) | static para(attrs) { method passwordEdit (line 45465) | static passwordEdit(attrs) { method pattern (line 45468) | static pattern(attrs) { method picture (line 45471) | static picture(attrs) { method proto (line 45474) | static proto(attrs) { method radial (line 45477) | static radial(attrs) { method reason (line 45480) | static reason(attrs) { method reasons (line 45483) | static reasons(attrs) { method rectangle (line 45486) | static rectangle(attrs) { method ref (line 45489) | static ref(attrs) { method script (line 45492) | static script(attrs) { method setProperty (line 45495) | static setProperty(attrs) { method signData (line 45498) | static signData(attrs) { method signature (line 45501) | static signature(attrs) { method signing (line 45504) | static signing(attrs) { method solid (line 45507) | static solid(attrs) { method speak (line 45510) | static speak(attrs) { method stipple (line 45513) | static stipple(attrs) { method subform (line 45516) | static subform(attrs) { method subformSet (line 45519) | static subformSet(attrs) { method subjectDN (line 45522) | static subjectDN(attrs) { method subjectDNs (line 45525) | static subjectDNs(attrs) { method submit (line 45528) | static submit(attrs) { method template (line 45531) | static template(attrs) { method text (line 45534) | static text(attrs) { method textEdit (line 45537) | static textEdit(attrs) { method time (line 45540) | static time(attrs) { method timeStamp (line 45543) | static timeStamp(attrs) { method toolTip (line 45546) | static toolTip(attrs) { method traversal (line 45549) | static traversal(attrs) { method traverse (line 45552) | static traverse(attrs) { method ui (line 45555) | static ui(attrs) { method validate (line 45558) | static validate(attrs) { method value (line 45561) | static value(attrs) { method variables (line 45564) | static variables(attrs) { function createText (line 45577) | function createText(content) { class Binder (line 45582) | class Binder { method constructor (line 45583) | constructor(root) { method _isConsumeData (line 45590) | _isConsumeData() { method _isMatchTemplate (line 45593) | _isMatchTemplate() { method bind (line 45596) | bind() { method getData (line 45600) | getData() { method _bindValue (line 45603) | _bindValue(formNode, data, picture) { method _findDataByNameToConsume (line 45621) | _findDataByNameToConsume(name, isValue, dataNode, global) { method _setProperties (line 45657) | _setProperties(formNode, dataNode) { method _bindItems (line 45719) | _bindItems(formNode, dataNode) { method _bindOccurrences (line 45784) | _bindOccurrences(formNode, matches, picture) { method _createOccurrences (line 45810) | _createOccurrences(formNode) { method _getOccurInfo (line 45846) | _getOccurInfo(formNode) { method _setAndBind (line 45857) | _setAndBind(formNode, dataNode) { method _bindElement (line 45862) | _bindElement(formNode, dataNode) { class DataHandler (line 45992) | class DataHandler { method constructor (line 45993) | constructor(root, data) { method serialize (line 45997) | serialize(storage) { constant CONFIG_NS_ID (line 46045) | const CONFIG_NS_ID = NamespaceIds.config.id; class Acrobat (line 46046) | class Acrobat extends XFAObject { method constructor (line 46047) | constructor(attributes) { class Acrobat7 (line 46057) | class Acrobat7 extends XFAObject { method constructor (line 46058) | constructor(attributes) { class ADBE_JSConsole (line 46063) | class ADBE_JSConsole extends OptionObject { method constructor (line 46064) | constructor(attributes) { class ADBE_JSDebugger (line 46068) | class ADBE_JSDebugger extends OptionObject { method constructor (line 46069) | constructor(attributes) { class AddSilentPrint (line 46073) | class AddSilentPrint extends Option01 { method constructor (line 46074) | constructor(attributes) { class AddViewerPreferences (line 46078) | class AddViewerPreferences extends Option01 { method constructor (line 46079) | constructor(attributes) { class AdjustData (line 46083) | class AdjustData extends Option10 { method constructor (line 46084) | constructor(attributes) { class AdobeExtensionLevel (line 46088) | class AdobeExtensionLevel extends IntegerObject { method constructor (line 46089) | constructor(attributes) { class Agent (line 46093) | class Agent extends XFAObject { method constructor (line 46094) | constructor(attributes) { class AlwaysEmbed (line 46100) | class AlwaysEmbed extends ContentObject { method constructor (line 46101) | constructor(attributes) { class Amd (line 46105) | class Amd extends StringObject { method constructor (line 46106) | constructor(attributes) { class config_Area (line 46110) | class config_Area extends XFAObject { method constructor (line 46111) | constructor(attributes) { class Attributes (line 46121) | class Attributes extends OptionObject { method constructor (line 46122) | constructor(attributes) { class AutoSave (line 46126) | class AutoSave extends OptionObject { method constructor (line 46127) | constructor(attributes) { class Base (line 46131) | class Base extends StringObject { method constructor (line 46132) | constructor(attributes) { class BatchOutput (line 46136) | class BatchOutput extends XFAObject { method constructor (line 46137) | constructor(attributes) { class BehaviorOverride (line 46142) | class BehaviorOverride extends ContentObject { method constructor (line 46143) | constructor(attributes) { method [$finalize] (line 46146) | [$finalize]() { class Cache (line 46150) | class Cache extends XFAObject { method constructor (line 46151) | constructor(attributes) { class Change (line 46156) | class Change extends Option01 { method constructor (line 46157) | constructor(attributes) { class Common (line 46161) | class Common extends XFAObject { method constructor (line 46162) | constructor(attributes) { class Compress (line 46175) | class Compress extends XFAObject { method constructor (line 46176) | constructor(attributes) { class CompressLogicalStructure (line 46181) | class CompressLogicalStructure extends Option01 { method constructor (line 46182) | constructor(attributes) { class CompressObjectStream (line 46186) | class CompressObjectStream extends Option10 { method constructor (line 46187) | constructor(attributes) { class Compression (line 46191) | class Compression extends XFAObject { method constructor (line 46192) | constructor(attributes) { class Config (line 46200) | class Config extends XFAObject { method constructor (line 46201) | constructor(attributes) { class Conformance (line 46209) | class Conformance extends OptionObject { method constructor (line 46210) | constructor(attributes) { class ContentCopy (line 46214) | class ContentCopy extends Option01 { method constructor (line 46215) | constructor(attributes) { class Copies (line 46219) | class Copies extends IntegerObject { method constructor (line 46220) | constructor(attributes) { class Creator (line 46224) | class Creator extends StringObject { method constructor (line 46225) | constructor(attributes) { class CurrentPage (line 46229) | class CurrentPage extends IntegerObject { method constructor (line 46230) | constructor(attributes) { class Data (line 46234) | class Data extends XFAObject { method constructor (line 46235) | constructor(attributes) { class Debug (line 46251) | class Debug extends XFAObject { method constructor (line 46252) | constructor(attributes) { class DefaultTypeface (line 46257) | class DefaultTypeface extends ContentObject { method constructor (line 46258) | constructor(attributes) { class Destination (line 46263) | class Destination extends OptionObject { method constructor (line 46264) | constructor(attributes) { class DocumentAssembly (line 46268) | class DocumentAssembly extends Option01 { method constructor (line 46269) | constructor(attributes) { class Driver (line 46273) | class Driver extends XFAObject { method constructor (line 46274) | constructor(attributes) { class DuplexOption (line 46281) | class DuplexOption extends OptionObject { method constructor (line 46282) | constructor(attributes) { class DynamicRender (line 46286) | class DynamicRender extends OptionObject { method constructor (line 46287) | constructor(attributes) { class Embed (line 46291) | class Embed extends Option01 { method constructor (line 46292) | constructor(attributes) { class config_Encrypt (line 46296) | class config_Encrypt extends Option01 { method constructor (line 46297) | constructor(attributes) { class config_Encryption (line 46301) | class config_Encryption extends XFAObject { method constructor (line 46302) | constructor(attributes) { class EncryptionLevel (line 46309) | class EncryptionLevel extends OptionObject { method constructor (line 46310) | constructor(attributes) { class Enforce (line 46314) | class Enforce extends StringObject { method constructor (line 46315) | constructor(attributes) { class Equate (line 46319) | class Equate extends XFAObject { method constructor (line 46320) | constructor(attributes) { class EquateRange (line 46331) | class EquateRange extends XFAObject { method constructor (line 46332) | constructor(attributes) { method unicodeRange (line 46338) | get unicodeRange() { class Exclude (line 46358) | class Exclude extends ContentObject { method constructor (line 46359) | constructor(attributes) { method [$finalize] (line 46362) | [$finalize]() { class ExcludeNS (line 46366) | class ExcludeNS extends StringObject { method constructor (line 46367) | constructor(attributes) { class FlipLabel (line 46371) | class FlipLabel extends OptionObject { method constructor (line 46372) | constructor(attributes) { class config_FontInfo (line 46376) | class config_FontInfo extends XFAObject { method constructor (line 46377) | constructor(attributes) { class FormFieldFilling (line 46387) | class FormFieldFilling extends Option01 { method constructor (line 46388) | constructor(attributes) { class GroupParent (line 46392) | class GroupParent extends StringObject { method constructor (line 46393) | constructor(attributes) { class IfEmpty (line 46397) | class IfEmpty extends OptionObject { method constructor (line 46398) | constructor(attributes) { class IncludeXDPContent (line 46402) | class IncludeXDPContent extends StringObject { method constructor (line 46403) | constructor(attributes) { class IncrementalLoad (line 46407) | class IncrementalLoad extends OptionObject { method constructor (line 46408) | constructor(attributes) { class IncrementalMerge (line 46412) | class IncrementalMerge extends Option01 { method constructor (line 46413) | constructor(attributes) { class Interactive (line 46417) | class Interactive extends Option01 { method constructor (line 46418) | constructor(attributes) { class Jog (line 46422) | class Jog extends OptionObject { method constructor (line 46423) | constructor(attributes) { class LabelPrinter (line 46427) | class LabelPrinter extends XFAObject { method constructor (line 46428) | constructor(attributes) { class Layout (line 46437) | class Layout extends OptionObject { method constructor (line 46438) | constructor(attributes) { class Level (line 46442) | class Level extends IntegerObject { method constructor (line 46443) | constructor(attributes) { class Linearized (line 46447) | class Linearized extends Option01 { method constructor (line 46448) | constructor(attributes) { class Locale (line 46452) | class Locale extends StringObject { method constructor (line 46453) | constructor(attributes) { class LocaleSet (line 46457) | class LocaleSet extends StringObject { method constructor (line 46458) | constructor(attributes) { class Log (line 46462) | class Log extends XFAObject { method constructor (line 46463) | constructor(attributes) { class MapElement (line 46471) | class MapElement extends XFAObject { method constructor (line 46472) | constructor(attributes) { class MediumInfo (line 46478) | class MediumInfo extends XFAObject { method constructor (line 46479) | constructor(attributes) { class config_Message (line 46484) | class config_Message extends XFAObject { method constructor (line 46485) | constructor(attributes) { class Messaging (line 46491) | class Messaging extends XFAObject { method constructor (line 46492) | constructor(attributes) { class Mode (line 46497) | class Mode extends OptionObject { method constructor (line 46498) | constructor(attributes) { class ModifyAnnots (line 46502) | class ModifyAnnots extends Option01 { method constructor (line 46503) | constructor(attributes) { class MsgId (line 46507) | class MsgId extends IntegerObject { method constructor (line 46508) | constructor(attributes) { class NameAttr (line 46512) | class NameAttr extends StringObject { method constructor (line 46513) | constructor(attributes) { class NeverEmbed (line 46517) | class NeverEmbed extends ContentObject { method constructor (line 46518) | constructor(attributes) { class NumberOfCopies (line 46522) | class NumberOfCopies extends IntegerObject { method constructor (line 46523) | constructor(attributes) { class OpenAction (line 46527) | class OpenAction extends XFAObject { method constructor (line 46528) | constructor(attributes) { class Output (line 46533) | class Output extends XFAObject { method constructor (line 46534) | constructor(attributes) { class OutputBin (line 46541) | class OutputBin extends StringObject { method constructor (line 46542) | constructor(attributes) { class OutputXSL (line 46546) | class OutputXSL extends XFAObject { method constructor (line 46547) | constructor(attributes) { class Overprint (line 46552) | class Overprint extends OptionObject { method constructor (line 46553) | constructor(attributes) { class Packets (line 46557) | class Packets extends StringObject { method constructor (line 46558) | constructor(attributes) { method [$finalize] (line 46561) | [$finalize]() { class PageOffset (line 46568) | class PageOffset extends XFAObject { method constructor (line 46569) | constructor(attributes) { class PageRange (line 46583) | class PageRange extends StringObject { method constructor (line 46584) | constructor(attributes) { method [$finalize] (line 46587) | [$finalize]() { class Pagination (line 46596) | class Pagination extends OptionObject { method constructor (line 46597) | constructor(attributes) { class PaginationOverride (line 46601) | class PaginationOverride extends OptionObject { method constructor (line 46602) | constructor(attributes) { class Part (line 46606) | class Part extends IntegerObject { method constructor (line 46607) | constructor(attributes) { class Pcl (line 46611) | class Pcl extends XFAObject { method constructor (line 46612) | constructor(attributes) { class Pdf (line 46625) | class Pdf extends XFAObject { method constructor (line 46626) | constructor(attributes) { class Pdfa (line 46650) | class Pdfa extends XFAObject { method constructor (line 46651) | constructor(attributes) { class Permissions (line 46659) | class Permissions extends XFAObject { method constructor (line 46660) | constructor(attributes) { class PickTrayByPDFSize (line 46673) | class PickTrayByPDFSize extends Option01 { method constructor (line 46674) | constructor(attributes) { class config_Picture (line 46678) | class config_Picture extends StringObject { method constructor (line 46679) | constructor(attributes) { class PlaintextMetadata (line 46683) | class PlaintextMetadata extends Option01 { method constructor (line 46684) | constructor(attributes) { class Presence (line 46688) | class Presence extends OptionObject { method constructor (line 46689) | constructor(attributes) { class Present (line 46693) | class Present extends XFAObject { method constructor (line 46694) | constructor(attributes) { class Print (line 46720) | class Print extends Option01 { method constructor (line 46721) | constructor(attributes) { class PrintHighQuality (line 46725) | class PrintHighQuality extends Option01 { method constructor (line 46726) | constructor(attributes) { class PrintScaling (line 46730) | class PrintScaling extends OptionObject { method constructor (line 46731) | constructor(attributes) { class PrinterName (line 46735) | class PrinterName extends StringObject { method constructor (line 46736) | constructor(attributes) { class Producer (line 46740) | class Producer extends StringObject { method constructor (line 46741) | constructor(attributes) { class Ps (line 46745) | class Ps extends XFAObject { method constructor (line 46746) | constructor(attributes) { class Range (line 46758) | class Range extends ContentObject { method constructor (line 46759) | constructor(attributes) { method [$finalize] (line 46762) | [$finalize]() { class Record (line 46771) | class Record extends ContentObject { method constructor (line 46772) | constructor(attributes) { method [$finalize] (line 46775) | [$finalize]() { class Relevant (line 46783) | class Relevant extends ContentObject { method constructor (line 46784) | constructor(attributes) { method [$finalize] (line 46787) | [$finalize]() { class Rename (line 46791) | class Rename extends ContentObject { method constructor (line 46792) | constructor(attributes) { method [$finalize] (line 46795) | [$finalize]() { class RenderPolicy (line 46802) | class RenderPolicy extends OptionObject { method constructor (line 46803) | constructor(attributes) { class RunScripts (line 46807) | class RunScripts extends OptionObject { method constructor (line 46808) | constructor(attributes) { class config_Script (line 46812) | class config_Script extends XFAObject { method constructor (line 46813) | constructor(attributes) { class ScriptModel (line 46820) | class ScriptModel extends OptionObject { method constructor (line 46821) | constructor(attributes) { class Severity (line 46825) | class Severity extends OptionObject { method constructor (line 46826) | constructor(attributes) { class SilentPrint (line 46830) | class SilentPrint extends XFAObject { method constructor (line 46831) | constructor(attributes) { class Staple (line 46837) | class Staple extends XFAObject { method constructor (line 46838) | constructor(attributes) { class StartNode (line 46843) | class StartNode extends StringObject { method constructor (line 46844) | constructor(attributes) { class StartPage (line 46848) | class StartPage extends IntegerObject { method constructor (line 46849) | constructor(attributes) { class SubmitFormat (line 46853) | class SubmitFormat extends OptionObject { method constructor (line 46854) | constructor(attributes) { class SubmitUrl (line 46858) | class SubmitUrl extends StringObject { method constructor (line 46859) | constructor(attributes) { class SubsetBelow (line 46863) | class SubsetBelow extends IntegerObject { method constructor (line 46864) | constructor(attributes) { class SuppressBanner (line 46868) | class SuppressBanner extends Option01 { method constructor (line 46869) | constructor(attributes) { class Tagged (line 46873) | class Tagged extends Option01 { method constructor (line 46874) | constructor(attributes) { class config_Template (line 46878) | class config_Template extends XFAObject { method constructor (line 46879) | constructor(attributes) { class Threshold (line 46888) | class Threshold extends OptionObject { method constructor (line 46889) | constructor(attributes) { class To (line 46893) | class To extends OptionObject { method constructor (line 46894) | constructor(attributes) { class TemplateCache (line 46898) | class TemplateCache extends XFAObject { method constructor (line 46899) | constructor(attributes) { class Trace (line 46908) | class Trace extends XFAObject { method constructor (line 46909) | constructor(attributes) { class Transform (line 46914) | class Transform extends XFAObject { method constructor (line 46915) | constructor(attributes) { class Type (line 46926) | class Type extends OptionObject { method constructor (line 46927) | constructor(attributes) { class Uri (line 46931) | class Uri extends StringObject { method constructor (line 46932) | constructor(attributes) { class config_Validate (line 46936) | class config_Validate extends OptionObject { method constructor (line 46937) | constructor(attributes) { class ValidateApprovalSignatures (line 46941) | class ValidateApprovalSignatures extends ContentObject { method constructor (line 46942) | constructor(attributes) { method [$finalize] (line 46945) | [$finalize]() { class ValidationMessaging (line 46949) | class ValidationMessaging extends OptionObject { method constructor (line 46950) | constructor(attributes) { class Version (line 46954) | class Version extends OptionObject { method constructor (line 46955) | constructor(attributes) { class VersionControl (line 46959) | class VersionControl extends XFAObject { method constructor (line 46960) | constructor(attributes) { class ViewerPreferences (line 46967) | class ViewerPreferences extends XFAObject { method constructor (line 46968) | constructor(attributes) { class WebClient (line 46981) | class WebClient extends XFAObject { method constructor (line 46982) | constructor(attributes) { class Whitespace (line 46989) | class Whitespace extends OptionObject { method constructor (line 46990) | constructor(attributes) { class Window (line 46994) | class Window extends ContentObject { method constructor (line 46995) | constructor(attributes) { method [$finalize] (line 46998) | [$finalize]() { class Xdc (line 47010) | class Xdc extends XFAObject { method constructor (line 47011) | constructor(attributes) { class Xdp (line 47017) | class Xdp extends XFAObject { method constructor (line 47018) | constructor(attributes) { class Xsl (line 47023) | class Xsl extends XFAObject { method constructor (line 47024) | constructor(attributes) { class Zpl (line 47030) | class Zpl extends XFAObject { method constructor (line 47031) | constructor(attributes) { class ConfigNamespace (line 47040) | class ConfigNamespace { method [$buildXFAObject] (line 47041) | static [$buildXFAObject](name, attributes) { method acrobat (line 47047) | static acrobat(attrs) { method acrobat7 (line 47050) | static acrobat7(attrs) { method ADBE_JSConsole (line 47053) | static ADBE_JSConsole(attrs) { method ADBE_JSDebugger (line 47056) | static ADBE_JSDebugger(attrs) { method addSilentPrint (line 47059) | static addSilentPrint(attrs) { method addViewerPreferences (line 47062) | static addViewerPreferences(attrs) { method adjustData (line 47065) | static adjustData(attrs) { method adobeExtensionLevel (line 47068) | static adobeExtensionLevel(attrs) { method agent (line 47071) | static agent(attrs) { method alwaysEmbed (line 47074) | static alwaysEmbed(attrs) { method amd (line 47077) | static amd(attrs) { method area (line 47080) | static area(attrs) { method attributes (line 47083) | static attributes(attrs) { method autoSave (line 47086) | static autoSave(attrs) { method base (line 47089) | static base(attrs) { method batchOutput (line 47092) | static batchOutput(attrs) { method behaviorOverride (line 47095) | static behaviorOverride(attrs) { method cache (line 47098) | static cache(attrs) { method change (line 47101) | static change(attrs) { method common (line 47104) | static common(attrs) { method compress (line 47107) | static compress(attrs) { method compressLogicalStructure (line 47110) | static compressLogicalStructure(attrs) { method compressObjectStream (line 47113) | static compressObjectStream(attrs) { method compression (line 47116) | static compression(attrs) { method config (line 47119) | static config(attrs) { method conformance (line 47122) | static conformance(attrs) { method contentCopy (line 47125) | static contentCopy(attrs) { method copies (line 47128) | static copies(attrs) { method creator (line 47131) | static creator(attrs) { method currentPage (line 47134) | static currentPage(attrs) { method data (line 47137) | static data(attrs) { method debug (line 47140) | static debug(attrs) { method defaultTypeface (line 47143) | static defaultTypeface(attrs) { method destination (line 47146) | static destination(attrs) { method documentAssembly (line 47149) | static documentAssembly(attrs) { method driver (line 47152) | static driver(attrs) { method duplexOption (line 47155) | static duplexOption(attrs) { method dynamicRender (line 47158) | static dynamicRender(attrs) { method embed (line 47161) | static embed(attrs) { method encrypt (line 47164) | static encrypt(attrs) { method encryption (line 47167) | static encryption(attrs) { method encryptionLevel (line 47170) | static encryptionLevel(attrs) { method enforce (line 47173) | static enforce(attrs) { method equate (line 47176) | static equate(attrs) { method equateRange (line 47179) | static equateRange(attrs) { method exclude (line 47182) | static exclude(attrs) { method excludeNS (line 47185) | static excludeNS(attrs) { method flipLabel (line 47188) | static flipLabel(attrs) { method fontInfo (line 47191) | static fontInfo(attrs) { method formFieldFilling (line 47194) | static formFieldFilling(attrs) { method groupParent (line 47197) | static groupParent(attrs) { method ifEmpty (line 47200) | static ifEmpty(attrs) { method includeXDPContent (line 47203) | static includeXDPContent(attrs) { method incrementalLoad (line 47206) | static incrementalLoad(attrs) { method incrementalMerge (line 47209) | static incrementalMerge(attrs) { method interactive (line 47212) | static interactive(attrs) { method jog (line 47215) | static jog(attrs) { method labelPrinter (line 47218) | static labelPrinter(attrs) { method layout (line 47221) | static layout(attrs) { method level (line 47224) | static level(attrs) { method linearized (line 47227) | static linearized(attrs) { method locale (line 47230) | static locale(attrs) { method localeSet (line 47233) | static localeSet(attrs) { method log (line 47236) | static log(attrs) { method map (line 47239) | static map(attrs) { method mediumInfo (line 47242) | static mediumInfo(attrs) { method message (line 47245) | static message(attrs) { method messaging (line 47248) | static messaging(attrs) { method mode (line 47251) | static mode(attrs) { method modifyAnnots (line 47254) | static modifyAnnots(attrs) { method msgId (line 47257) | static msgId(attrs) { method nameAttr (line 47260) | static nameAttr(attrs) { method neverEmbed (line 47263) | static neverEmbed(attrs) { method numberOfCopies (line 47266) | static numberOfCopies(attrs) { method openAction (line 47269) | static openAction(attrs) { method output (line 47272) | static output(attrs) { method outputBin (line 47275) | static outputBin(attrs) { method outputXSL (line 47278) | static outputXSL(attrs) { method overprint (line 47281) | static overprint(attrs) { method packets (line 47284) | static packets(attrs) { method pageOffset (line 47287) | static pageOffset(attrs) { method pageRange (line 47290) | static pageRange(attrs) { method pagination (line 47293) | static pagination(attrs) { method paginationOverride (line 47296) | static paginationOverride(attrs) { method part (line 47299) | static part(attrs) { method pcl (line 47302) | static pcl(attrs) { method pdf (line 47305) | static pdf(attrs) { method pdfa (line 47308) | static pdfa(attrs) { method permissions (line 47311) | static permissions(attrs) { method pickTrayByPDFSize (line 47314) | static pickTrayByPDFSize(attrs) { method picture (line 47317) | static picture(attrs) { method plaintextMetadata (line 47320) | static plaintextMetadata(attrs) { method presence (line 47323) | static presence(attrs) { method present (line 47326) | static present(attrs) { method print (line 47329) | static print(attrs) { method printHighQuality (line 47332) | static printHighQuality(attrs) { method printScaling (line 47335) | static printScaling(attrs) { method printerName (line 47338) | static printerName(attrs) { method producer (line 47341) | static producer(attrs) { method ps (line 47344) | static ps(attrs) { method range (line 47347) | static range(attrs) { method record (line 47350) | static record(attrs) { method relevant (line 47353) | static relevant(attrs) { method rename (line 47356) | static rename(attrs) { method renderPolicy (line 47359) | static renderPolicy(attrs) { method runScripts (line 47362) | static runScripts(attrs) { method script (line 47365) | static script(attrs) { method scriptModel (line 47368) | static scriptModel(attrs) { method severity (line 47371) | static severity(attrs) { method silentPrint (line 47374) | static silentPrint(attrs) { method staple (line 47377) | static staple(attrs) { method startNode (line 47380) | static startNode(attrs) { method startPage (line 47383) | static startPage(attrs) { method submitFormat (line 47386) | static submitFormat(attrs) { method submitUrl (line 47389) | static submitUrl(attrs) { method subsetBelow (line 47392) | static subsetBelow(attrs) { method suppressBanner (line 47395) | static suppressBanner(attrs) { method tagged (line 47398) | static tagged(attrs) { method template (line 47401) | static template(attrs) { method templateCache (line 47404) | static templateCache(attrs) { method threshold (line 47407) | static threshold(attrs) { method to (line 47410) | static to(attrs) { method trace (line 47413) | static trace(attrs) { method transform (line 47416) | static transform(attrs) { method type (line 47419) | static type(attrs) { method uri (line 47422) | static uri(attrs) { method validate (line 47425) | static validate(attrs) { method validateApprovalSignatures (line 47428) | static validateApprovalSignatures(attrs) { method validationMessaging (line 47431) | static validationMessaging(attrs) { method version (line 47434) | static version(attrs) { method versionControl (line 47437) | static versionControl(attrs) { method viewerPreferences (line 47440) | static viewerPreferences(attrs) { method webClient (line 47443) | static webClient(attrs) { method whitespace (line 47446) | static whitespace(attrs) { method window (line 47449) | static window(attrs) { method xdc (line 47452) | static xdc(attrs) { method xdp (line 47455) | static xdp(attrs) { method xsl (line 47458) | static xsl(attrs) { method zpl (line 47461) | static zpl(attrs) { constant CONNECTION_SET_NS_ID (line 47469) | const CONNECTION_SET_NS_ID = NamespaceIds.connectionSet.id; class ConnectionSet (line 47470) | class ConnectionSet extends XFAObject { method constructor (line 47471) | constructor(attributes) { class EffectiveInputPolicy (line 47478) | class EffectiveInputPolicy extends XFAObject { method constructor (line 47479) | constructor(attributes) { class EffectiveOutputPolicy (line 47487) | class EffectiveOutputPolicy extends XFAObject { method constructor (line 47488) | constructor(attributes) { class Operation (line 47496) | class Operation extends StringObject { method constructor (line 47497) | constructor(attributes) { class RootElement (line 47507) | class RootElement extends StringObject { method constructor (line 47508) | constructor(attributes) { class SoapAction (line 47516) | class SoapAction extends StringObject { method constructor (line 47517) | constructor(attributes) { class SoapAddress (line 47525) | class SoapAddress extends StringObject { method constructor (line 47526) | constructor(attributes) { class connection_set_Uri (line 47534) | class connection_set_Uri extends StringObject { method constructor (line 47535) | constructor(attributes) { class WsdlAddress (line 47543) | class WsdlAddress extends StringObject { method constructor (line 47544) | constructor(attributes) { class WsdlConnection (line 47552) | class WsdlConnection extends XFAObject { method constructor (line 47553) | constructor(attributes) { class XmlConnection (line 47565) | class XmlConnection extends XFAObject { method constructor (line 47566) | constructor(attributes) { class XsdConnection (line 47573) | class XsdConnection extends XFAObject { method constructor (line 47574) | constructor(attributes) { class ConnectionSetNamespace (line 47582) | class ConnectionSetNamespace { method [$buildXFAObject] (line 47583) | static [$buildXFAObject](name, attributes) { method connectionSet (line 47589) | static connectionSet(attrs) { method effectiveInputPolicy (line 47592) | static effectiveInputPolicy(attrs) { method effectiveOutputPolicy (line 47595) | static effectiveOutputPolicy(attrs) { method operation (line 47598) | static operation(attrs) { method rootElement (line 47601) | static rootElement(attrs) { method soapAction (line 47604) | static soapAction(attrs) { method soapAddress (line 47607) | static soapAddress(attrs) { method uri (line 47610) | static uri(attrs) { method wsdlAddress (line 47613) | static wsdlAddress(attrs) { method wsdlConnection (line 47616) | static wsdlConnection(attrs) { method xmlConnection (line 47619) | static xmlConnection(attrs) { method xsdConnection (line 47622) | static xsdConnection(attrs) { constant DATASETS_NS_ID (line 47631) | const DATASETS_NS_ID = NamespaceIds.datasets.id; class datasets_Data (line 47632) | class datasets_Data extends XmlObject { method constructor (line 47633) | constructor(attributes) { method [$isNsAgnostic] (line 47636) | [$isNsAgnostic]() { class Datasets (line 47640) | class Datasets extends XFAObject { method constructor (line 47641) | constructor(attributes) { method [$onChild] (line 47646) | [$onChild](child) { class DatasetsNamespace (line 47654) | class DatasetsNamespace { method [$buildXFAObject] (line 47655) | static [$buildXFAObject](name, attributes) { method datasets (line 47661) | static datasets(attributes) { method data (line 47664) | static data(attributes) { constant LOCALE_SET_NS_ID (line 47673) | const LOCALE_SET_NS_ID = NamespaceIds.localeSet.id; class CalendarSymbols (line 47674) | class CalendarSymbols extends XFAObject { method constructor (line 47675) | constructor(attributes) { class CurrencySymbol (line 47684) | class CurrencySymbol extends StringObject { method constructor (line 47685) | constructor(attributes) { class CurrencySymbols (line 47690) | class CurrencySymbols extends XFAObject { method constructor (line 47691) | constructor(attributes) { class DatePattern (line 47696) | class DatePattern extends StringObject { method constructor (line 47697) | constructor(attributes) { class DatePatterns (line 47702) | class DatePatterns extends XFAObject { method constructor (line 47703) | constructor(attributes) { class DateTimeSymbols (line 47708) | class DateTimeSymbols extends ContentObject { method constructor (line 47709) | constructor(attributes) { class Day (line 47713) | class Day extends StringObject { method constructor (line 47714) | constructor(attributes) { class DayNames (line 47718) | class DayNames extends XFAObject { method constructor (line 47719) | constructor(attributes) { class Era (line 47729) | class Era extends StringObject { method constructor (line 47730) | constructor(attributes) { class EraNames (line 47734) | class EraNames extends XFAObject { method constructor (line 47735) | constructor(attributes) { class locale_set_Locale (line 47740) | class locale_set_Locale extends XFAObject { method constructor (line 47741) | constructor(attributes) { class locale_set_LocaleSet (line 47755) | class locale_set_LocaleSet extends XFAObject { method constructor (line 47756) | constructor(attributes) { class Meridiem (line 47761) | class Meridiem extends StringObject { method constructor (line 47762) | constructor(attributes) { class MeridiemNames (line 47766) | class MeridiemNames extends XFAObject { method constructor (line 47767) | constructor(attributes) { class Month (line 47772) | class Month extends StringObject { method constructor (line 47773) | constructor(attributes) { class MonthNames (line 47777) | class MonthNames extends XFAObject { method constructor (line 47778) | constructor(attributes) { class NumberPattern (line 47788) | class NumberPattern extends StringObject { method constructor (line 47789) | constructor(attributes) { class NumberPatterns (line 47794) | class NumberPatterns extends XFAObject { method constructor (line 47795) | constructor(attributes) { class NumberSymbol (line 47800) | class NumberSymbol extends StringObject { method constructor (line 47801) | constructor(attributes) { class NumberSymbols (line 47806) | class NumberSymbols extends XFAObject { method constructor (line 47807) | constructor(attributes) { class TimePattern (line 47812) | class TimePattern extends StringObject { method constructor (line 47813) | constructor(attributes) { class TimePatterns (line 47818) | class TimePatterns extends XFAObject { method constructor (line 47819) | constructor(attributes) { class TypeFace (line 47824) | class TypeFace extends XFAObject { method constructor (line 47825) | constructor(attributes) { class TypeFaces (line 47830) | class TypeFaces extends XFAObject { method constructor (line 47831) | constructor(attributes) { class LocaleSetNamespace (line 47836) | class LocaleSetNamespace { method [$buildXFAObject] (line 47837) | static [$buildXFAObject](name, attributes) { method calendarSymbols (line 47843) | static calendarSymbols(attrs) { method currencySymbol (line 47846) | static currencySymbol(attrs) { method currencySymbols (line 47849) | static currencySymbols(attrs) { method datePattern (line 47852) | static datePattern(attrs) { method datePatterns (line 47855) | static datePatterns(attrs) { method dateTimeSymbols (line 47858) | static dateTimeSymbols(attrs) { method day (line 47861) | static day(attrs) { method dayNames (line 47864) | static dayNames(attrs) { method era (line 47867) | static era(attrs) { method eraNames (line 47870) | static eraNames(attrs) { method locale (line 47873) | static locale(attrs) { method localeSet (line 47876) | static localeSet(attrs) { method meridiem (line 47879) | static meridiem(attrs) { method meridiemNames (line 47882) | static meridiemNames(attrs) { method month (line 47885) | static month(attrs) { method monthNames (line 47888) | static monthNames(attrs) { method numberPattern (line 47891) | static numberPattern(attrs) { method numberPatterns (line 47894) | static numberPatterns(attrs) { method numberSymbol (line 47897) | static numberSymbol(attrs) { method numberSymbols (line 47900) | static numberSymbols(attrs) { method timePattern (line 47903) | static timePattern(attrs) { method timePatterns (line 47906) | static timePatterns(attrs) { method typeFace (line 47909) | static typeFace(attrs) { method typeFaces (line 47912) | static typeFaces(attrs) { constant SIGNATURE_NS_ID (line 47920) | const SIGNATURE_NS_ID = NamespaceIds.signature.id; class signature_Signature (line 47921) | class signature_Signature extends XFAObject { method constructor (line 47922) | constructor(attributes) { class SignatureNamespace (line 47926) | class SignatureNamespace { method [$buildXFAObject] (line 47927) | static [$buildXFAObject](name, attributes) { method signature (line 47933) | static signature(attributes) { constant STYLESHEET_NS_ID (line 47941) | const STYLESHEET_NS_ID = NamespaceIds.stylesheet.id; class Stylesheet (line 47942) | class Stylesheet extends XFAObject { method constructor (line 47943) | constructor(attributes) { class StylesheetNamespace (line 47947) | class StylesheetNamespace { method [$buildXFAObject] (line 47948) | static [$buildXFAObject](name, attributes) { method stylesheet (line 47954) | static stylesheet(attributes) { constant XDP_NS_ID (line 47963) | const XDP_NS_ID = NamespaceIds.xdp.id; class xdp_Xdp (line 47964) | class xdp_Xdp extends XFAObject { method constructor (line 47965) | constructor(attributes) { method [$onChildCheck] (line 47976) | [$onChildCheck](child) { class XdpNamespace (line 47981) | class XdpNamespace { method [$buildXFAObject] (line 47982) | static [$buildXFAObject](name, attributes) { method xdp (line 47988) | static xdp(attributes) { constant XHTML_NS_ID (line 47999) | const XHTML_NS_ID = NamespaceIds.xhtml.id; constant VALID_STYLES (line 48001) | const VALID_STYLES = new Set(["color", "font", "font-family", "font-size... function mapStyle (line 48009) | function mapStyle(styleStr, node, richText) { function checkStyle (line 48051) | function checkStyle(node) { class XhtmlObject (line 48063) | class XhtmlObject extends XmlObject { method constructor (line 48064) | constructor(attributes, name) { method [$clean] (line 48069) | [$clean](builder) { method [$acceptWhitespace] (line 48073) | [$acceptWhitespace]() { method [$onText] (line 48076) | [$onText](str, richText = false) { method [$pushGlyphs] (line 48089) | [$pushGlyphs](measure, mustPop = true) { method [$toHTML] (line 48171) | [$toHTML](availableSpace) { class A (line 48197) | class A extends XhtmlObject { method constructor (line 48198) | constructor(attributes) { class B (line 48203) | class B extends XhtmlObject { method constructor (line 48204) | constructor(attributes) { method [$pushGlyphs] (line 48207) | [$pushGlyphs](measure) { class Body (line 48215) | class Body extends XhtmlObject { method constructor (line 48216) | constructor(attributes) { method [$toHTML] (line 48219) | [$toHTML](availableSpace) { class Br (line 48232) | class Br extends XhtmlObject { method constructor (line 48233) | constructor(attributes) { method [$text] (line 48236) | [$text]() { method [$pushGlyphs] (line 48239) | [$pushGlyphs](measure) { method [$toHTML] (line 48242) | [$toHTML](availableSpace) { class Html (line 48248) | class Html extends XhtmlObject { method constructor (line 48249) | constructor(attributes) { method [$toHTML] (line 48252) | [$toHTML](availableSpace) { class I (line 48284) | class I extends XhtmlObject { method constructor (line 48285) | constructor(attributes) { method [$pushGlyphs] (line 48288) | [$pushGlyphs](measure) { class Li (line 48296) | class Li extends XhtmlObject { method constructor (line 48297) | constructor(attributes) { class Ol (line 48301) | class Ol extends XhtmlObject { method constructor (line 48302) | constructor(attributes) { class P (line 48306) | class P extends XhtmlObject { method constructor (line 48307) | constructor(attributes) { method [$pushGlyphs] (line 48310) | [$pushGlyphs](measure) { method [$text] (line 48316) | [$text]() { class Span (line 48324) | class Span extends XhtmlObject { method constructor (line 48325) | constructor(attributes) { class Sub (line 48329) | class Sub extends XhtmlObject { method constructor (line 48330) | constructor(attributes) { class Sup (line 48334) | class Sup extends XhtmlObject { method constructor (line 48335) | constructor(attributes) { class Ul (line 48339) | class Ul extends XhtmlObject { method constructor (line 48340) | constructor(attributes) { class XhtmlNamespace (line 48344) | class XhtmlNamespace { method [$buildXFAObject] (line 48345) | static [$buildXFAObject](name, attributes) { method a (line 48351) | static a(attributes) { method b (line 48354) | static b(attributes) { method body (line 48357) | static body(attributes) { method br (line 48360) | static br(attributes) { method html (line 48363) | static html(attributes) { method i (line 48366) | static i(attributes) { method li (line 48369) | static li(attributes) { method ol (line 48372) | static ol(attributes) { method p (line 48375) | static p(attributes) { method span (line 48378) | static span(attributes) { method sub (line 48381) | static sub(attributes) { method sup (line 48384) | static sup(attributes) { method ul (line 48387) | static ul(attributes) { class UnknownNamespace (line 48417) | class UnknownNamespace { method constructor (line 48418) | constructor(nsId) { method [$buildXFAObject] (line 48421) | [$buildXFAObject](name, attributes) { class Root (line 48434) | class Root extends XFAObject { method constructor (line 48435) | constructor(ids) { method [$onChild] (line 48440) | [$onChild](child) { method [$finalize] (line 48444) | [$finalize]() { class Empty (line 48453) | class Empty extends XFAObject { method constructor (line 48454) | constructor() { method [$onChild] (line 48457) | [$onChild](_) { class Builder (line 48461) | class Builder { method constructor (line 48462) | constructor(rootNameSpace = null) { method buildRoot (line 48472) | buildRoot(ids) { method build (line 48475) | build({ method isNsAgnostic (line 48523) | isNsAgnostic() { method _searchNamespace (line 48526) | _searchNamespace(nsName) { method _addNamespacePrefix (line 48547) | _addNamespacePrefix(prefixes) { method _getNamespaceToUse (line 48561) | _getNamespaceToUse(prefix) { method clean (line 48572) | clean(data) { class XFAParser (line 48599) | class XFAParser extends XMLParserBase { method constructor (line 48600) | constructor(rootNameSpace = null, richText = false) { method parse (line 48614) | parse(data) { method onText (line 48622) | onText(text) { method onCdata (line 48633) | onCdata(text) { method _mkAttributes (line 48636) | _mkAttributes(attributes, tagName) { method _getNameAndPrefix (line 48676) | _getNameAndPrefix(name, nsAgnostic) { method onBeginElement (line 48683) | onBeginElement(tagName, attributes, isEmpty) { method onEndElement (line 48705) | onEndElement(name) { method onError (line 48721) | onError(code) { class XFAFactory (line 48735) | class XFAFactory { method constructor (line 48736) | constructor(data) { method isValid (line 48747) | isValid() { method _createPagesHelper (line 48750) | _createPagesHelper() { method _createPages (line 48768) | async _createPages() { method getBoundingBox (line 48782) | getBoundingBox(pageIndex) { method getNumPages (line 48785) | async getNumPages() { method setImages (line 48791) | setImages(images) { method setFonts (line 48794) | setFonts(fonts) { method appendFonts (line 48809) | appendFonts(fonts, reallyMissingFonts) { method getPages (line 48812) | async getPages() { method serializeData (line 48820) | serializeData(storage) { method _createDocument (line 48823) | static _createDocument(data) { method getRichTextAsHtml (line 48829) | static getRichTextAsHtml(rc) { class AnnotationFactory (line 48882) | class AnnotationFactory { method createGlobals (line 48883) | static createGlobals(pdfManager) { method create (line 48897) | static async create(xref, ref, annotationGlobals, idFactory, collectFi... method _create (line 48901) | static _create(xref, ref, annotationGlobals, idFactory, collectFields ... method _getPageIndex (line 48991) | static async _getPageIndex(xref, ref, pdfManager) { method generateImages (line 49024) | static generateImages(annotations, xref, isOffscreenCanvasSupported) { method saveNewAnnotations (line 49042) | static async saveNewAnnotations(evaluator, task, annotations, imagePro... method printNewAnnotations (line 49115) | static async printNewAnnotations(annotationGlobals, evaluator, task, a... function getRgbColor (line 49180) | function getRgbColor(color, defaultColor = new Uint8ClampedArray(3)) { function getPdfColorArray (line 49201) | function getPdfColorArray(color) { function getQuadPoints (line 49204) | function getQuadPoints(dict, rect) { function getTransformMatrix (line 49223) | function getTransformMatrix(rect, bbox, matrix) { class Annotation (line 49232) | class Annotation { method constructor (line 49233) | constructor(params) { method _hasFlag (line 49313) | _hasFlag(flags, flag) { method _buildFlags (line 49316) | _buildFlags(noView, noPrint) { method _isViewable (line 49342) | _isViewable(flags) { method _isPrintable (line 49345) | _isPrintable(flags) { method mustBeViewed (line 49348) | mustBeViewed(annotationStorage, _renderForms) { method mustBePrinted (line 49355) | mustBePrinted(annotationStorage) { method mustBeViewedWhenEditing (line 49362) | mustBeViewedWhenEditing(isEditing, modifiedIds = null) { method viewable (line 49365) | get viewable() { method printable (line 49374) | get printable() { method _parseStringHelper (line 49383) | _parseStringHelper(data) { method setDefaultAppearance (line 49391) | setDefaultAppearance(params) { method setTitle (line 49403) | setTitle(title) { method setContents (line 49406) | setContents(contents) { method setModificationDate (line 49409) | setModificationDate(modificationDate) { method setFlags (line 49412) | setFlags(flags) { method hasFlag (line 49418) | hasFlag(flag) { method setRectangle (line 49421) | setRectangle(rectangle) { method setColor (line 49424) | setColor(color) { method setLineEndings (line 49427) | setLineEndings(lineEndings) { method setRotation (line 49453) | setRotation(mk, dict) { method setBorderAndBackgroundColors (line 49466) | setBorderAndBackgroundColors(mk) { method setBorderStyle (line 49474) | setBorderStyle(borderStyle) { method setAppearance (line 49503) | setAppearance(dict) { method setOptionalContent (line 49526) | setOptionalContent(dict) { method loadResources (line 49535) | loadResources(keys, appearance) { method getOperatorList (line 49544) | async getOperatorList(evaluator, task, intent, annotationStorage) { method save (line 49603) | async save(evaluator, task, annotationStorage, changes) { method hasTextContent (line 49606) | get hasTextContent() { method extractTextContent (line 49609) | async extractTextContent(evaluator, task, viewBox) { method _transformPoint (line 49655) | _transformPoint(coords, bbox, matrix) { method getFieldObject (line 49667) | getFieldObject() { method reset (line 49683) | reset() { method _constructFieldName (line 49688) | _constructFieldName(dict) { method width (line 49719) | get width() { method height (line 49722) | get height() { class AnnotationBorderStyle (line 49726) | class AnnotationBorderStyle { method constructor (line 49727) | constructor() { method setWidth (line 49735) | setWidth(width, rect = [0, 0, 0, 0]) { method setStyle (line 49753) | setStyle(style) { method setDashArray (line 49777) | setDashArray(dashArray, forceStyle = false) { method setHorizontalCornerRadius (line 49802) | setHorizontalCornerRadius(radius) { method setVerticalCornerRadius (line 49807) | setVerticalCornerRadius(radius) { class MarkupAnnotation (line 49813) | class MarkupAnnotation extends Annotation { method constructor (line 49814) | constructor(params) { method setCreationDate (line 49865) | setCreationDate(creationDate) { method _setDefaultAppearance (line 49868) | _setDefaultAppearance({ method createNewAnnotation (line 49923) | static async createNewAnnotation(xref, annotation, changes, params) { method createNewPrintAnnotation (line 49948) | static async createNewPrintAnnotation(annotationGlobals, xref, annotat... class WidgetAnnotation (line 49965) | class WidgetAnnotation extends Annotation { method constructor (line 49966) | constructor(params) { method _decodeFormValue (line 50040) | _decodeFormValue(formValue) { method hasFieldFlag (line 50050) | hasFieldFlag(flag) { method _isViewable (line 50053) | _isViewable(flags) { method mustBeViewed (line 50056) | mustBeViewed(annotationStorage, renderForms) { method getRotationMatrix (line 50062) | getRotationMatrix(annotationStorage) { method getBorderAndBackgroundAppearances (line 50069) | getBorderAndBackgroundAppearances(annotationStorage) { method getOperatorList (line 50088) | async getOperatorList(evaluator, task, intent, annotationStorage) { method _getMKDict (line 50140) | _getMKDict(rotation) { method amendSavedDict (line 50153) | amendSavedDict(annotationStorage, dict) {} method setValue (line 50154) | setValue(dict, value, xref, changes) { method save (line 50171) | async save(evaluator, task, annotationStorage, changes) { method _getAppearance (line 50260) | async _getAppearance(evaluator, task, intent, annotationStorage) { method _getFontData (line 50391) | static async _getFontData(evaluator, task, appearanceData, resources) { method _getTextWidth (line 50406) | _getTextWidth(text, font) { method _computeFontSize (line 50409) | _computeFontSize(height, width, text, font, lineCount) { method _renderText (line 50468) | _renderText(text, font, fontSize, totalWidth, alignment, prevInfo, hPa... method _getSaveFieldResources (line 50484) | _getSaveFieldResources(xref) { method getFieldObject (line 50518) | getFieldObject() { class TextWidgetAnnotation (line 50522) | class TextWidgetAnnotation extends WidgetAnnotation { method constructor (line 50523) | constructor(params) { method hasTextContent (line 50558) | get hasTextContent() { method _getCombAppearance (line 50561) | _getCombAppearance(defaultAppearance, font, text, fontSize, width, hei... method _getMultilineAppearance (line 50572) | _getMultilineAppearance(defaultAppearance, lines, font, fontSize, widt... method _splitLine (line 50591) | _splitLine(line, font, fontSize, width, cache = {}) { method extractTextContent (line 50643) | async extractTextContent(evaluator, task, viewBox) { method getFieldObject (line 50658) | getFieldObject() { class ButtonWidgetAnnotation (line 50680) | class ButtonWidgetAnnotation extends WidgetAnnotation { method constructor (line 50681) | constructor(params) { method getOperatorList (line 50703) | async getOperatorList(evaluator, task, intent, annotationStorage) { method save (line 50739) | async save(evaluator, task, annotationStorage, changes) { method _saveCheckbox (line 50748) | async _saveCheckbox(evaluator, task, annotationStorage, changes) { method _saveRadioButton (line 50797) | async _saveRadioButton(evaluator, task, annotationStorage, changes) { method _getDefaultCheckedAppearance (line 50848) | _getDefaultCheckedAppearance(params, type) { method _processCheckBox (line 50891) | _processCheckBox(params) { method _processRadioButton (line 50943) | _processRadioButton(params) { method _processPushButton (line 50984) | _processPushButton(params) { method getFieldObject (line 51001) | getFieldObject() { method fallbackFontDict (line 51028) | get fallbackFontDict() { class ChoiceWidgetAnnotation (line 51037) | class ChoiceWidgetAnnotation extends WidgetAnnotation { method constructor (line 51038) | constructor(params) { method getFieldObject (line 51086) | getFieldObject() { method amendSavedDict (line 51108) | amendSavedDict(annotationStorage, dict) { method _getAppearance (line 51128) | async _getAppearance(evaluator, task, intent, annotationStorage) { class SignatureWidgetAnnotation (line 51227) | class SignatureWidgetAnnotation extends WidgetAnnotation { method constructor (line 51228) | constructor(params) { method getFieldObject (line 51234) | getFieldObject() { class TextAnnotation (line 51243) | class TextAnnotation extends MarkupAnnotation { method constructor (line 51244) | constructor(params) { class LinkAnnotation (line 51270) | class LinkAnnotation extends Annotation { method constructor (line 51271) | constructor(params) { class PopupAnnotation (line 51292) | class PopupAnnotation extends Annotation { method constructor (line 51293) | constructor(params) { class FreeTextAnnotation (line 51341) | class FreeTextAnnotation extends MarkupAnnotation { method constructor (line 51342) | constructor(params) { method hasTextContent (line 51387) | get hasTextContent() { method createNewDict (line 51390) | static createNewDict(annotation, xref, { method createNewAppearanceStream (line 51433) | static async createNewAppearanceStream(annotation, xref, params) { class LineAnnotation (line 51544) | class LineAnnotation extends MarkupAnnotation { method constructor (line 51545) | constructor(params) { class SquareAnnotation (line 51585) | class SquareAnnotation extends MarkupAnnotation { method constructor (line 51586) | constructor(params) { class CircleAnnotation (line 51628) | class CircleAnnotation extends MarkupAnnotation { method constructor (line 51629) | constructor(params) { class PolylineAnnotation (line 51674) | class PolylineAnnotation extends MarkupAnnotation { method constructor (line 51675) | constructor(params) { class PolygonAnnotation (line 51722) | class PolygonAnnotation extends PolylineAnnotation { method constructor (line 51723) | constructor(params) { class CaretAnnotation (line 51728) | class CaretAnnotation extends MarkupAnnotation { method constructor (line 51729) | constructor(params) { class InkAnnotation (line 51734) | class InkAnnotation extends MarkupAnnotation { method constructor (line 51735) | constructor(params) { method createNewDict (line 51798) | static createNewDict(annotation, xref, { method createNewAppearanceStream (line 51841) | static async createNewAppearanceStream(annotation, xref, params) { method createNewAppearanceStreamForHighlight (line 51892) | static async createNewAppearanceStreamForHighlight(annotation, xref, p... class HighlightAnnotation (line 51935) | class HighlightAnnotation extends MarkupAnnotation { method constructor (line 51936) | constructor(params) { method createNewDict (line 51970) | static createNewDict(annotation, xref, { method createNewAppearanceStream (line 52005) | static async createNewAppearanceStream(annotation, xref, params) { class UnderlineAnnotation (line 52047) | class UnderlineAnnotation extends MarkupAnnotation { method constructor (line 52048) | constructor(params) { class SquigglyAnnotation (line 52076) | class SquigglyAnnotation extends MarkupAnnotation { method constructor (line 52077) | constructor(params) { class StrikeOutAnnotation (line 52116) | class StrikeOutAnnotation extends MarkupAnnotation { method constructor (line 52117) | constructor(params) { class StampAnnotation (line 52145) | class StampAnnotation extends MarkupAnnotation { method constructor (line 52147) | constructor(params) { method mustBeViewedWhenEditing (line 52154) | mustBeViewedWhenEditing(isEditing, modifiedIds = null) { method createImage (line 52169) | static async createImage(bitmap, xref) { method createNewDict (line 52231) | static createNewDict(annotation, xref, { method #createNewAppearanceStreamForDrawing (line 52263) | static async #createNewAppearanceStreamForDrawing(annotation, xref) { method createNewAppearanceStream (line 52298) | static async createNewAppearanceStream(annotation, xref, params) { class FileAttachmentAnnotation (line 52333) | class FileAttachmentAnnotation extends MarkupAnnotation { method constructor (line 52334) | constructor(params) { constant PARAMS (line 52354) | const PARAMS = { method r (line 52355) | get r() { method k (line 52358) | get k() { function calculateMD5 (line 52362) | function calculateMD5(data, offset, length) { function decodeString (line 52433) | function decodeString(str) { class DatasetXMLParser (line 52441) | class DatasetXMLParser extends SimpleXMLParser { method constructor (line 52442) | constructor(options) { method onEndElement (line 52446) | onEndElement(name) { class DatasetReader (line 52454) | class DatasetReader { method constructor (line 52455) | constructor(data) { method getValue (line 52470) | getValue(path) { class Word64 (line 52488) | class Word64 { method constructor (line 52489) | constructor(highInteger, lowInteger) { method and (line 52493) | and(word) { method xor (line 52497) | xor(word) { method shiftRight (line 52501) | shiftRight(places) { method rotateRight (line 52510) | rotateRight(places) { method not (line 52523) | not() { method add (line 52527) | add(word) { method copyTo (line 52536) | copyTo(bytes, offset) { method assign (line 52546) | assign(word) { method k (line 52552) | get k() { function ch (line 52556) | function ch(result, x, y, z, tmp) { function maj (line 52564) | function maj(result, x, y, z, tmp) { function sigma (line 52574) | function sigma(result, x, tmp) { function sigmaPrime (line 52584) | function sigmaPrime(result, x, tmp) { function littleSigma (line 52594) | function littleSigma(result, x, tmp) { function littleSigmaPrime (line 52604) | function littleSigmaPrime(result, x, tmp) { function calculateSHA512 (line 52614) | function calculateSHA512(data, offset, length, mode384 = false) { function calculateSHA384 (line 52749) | function calculateSHA384(data, offset, length) { method k (line 52756) | get k() { function rotr (line 52760) | function rotr(x, n) { function calculate_sha256_ch (line 52763) | function calculate_sha256_ch(x, y, z) { function calculate_sha256_maj (line 52766) | function calculate_sha256_maj(x, y, z) { function calculate_sha256_sigma (line 52769) | function calculate_sha256_sigma(x) { function calculate_sha256_sigmaPrime (line 52772) | function calculate_sha256_sigmaPrime(x) { function calculate_sha256_littleSigma (line 52775) | function calculate_sha256_littleSigma(x) { function calculate_sha256_littleSigmaPrime (line 52778) | function calculate_sha256_littleSigmaPrime(x) { function calculateSHA256 (line 52781) | function calculateSHA256(data, offset, length) { class DecryptStream (line 52856) | class DecryptStream extends DecodeStream { method constructor (line 52857) | constructor(str, maybeLength, decrypt) { method readBlock (line 52865) | readBlock() { class ARCFourCipher (line 52896) | class ARCFourCipher { method constructor (line 52897) | constructor(key) { method encryptBlock (line 52913) | encryptBlock(data) { method decryptBlock (line 52932) | decryptBlock(data) { method encrypt (line 52935) | encrypt(data) { class NullCipher (line 52939) | class NullCipher { method decryptBlock (line 52940) | decryptBlock(data) { method encrypt (line 52943) | encrypt(data) { class AESBaseCipher (line 52947) | class AESBaseCipher { method constructor (line 52952) | constructor() { method _expandKey (line 52956) | _expandKey(cipherKey) { method _decrypt (line 52959) | _decrypt(input, key) { method _encrypt (line 53027) | _encrypt(input, key) { method _decryptBlock2 (line 53098) | _decryptBlock2(data, finalize) { method decryptBlock (line 53146) | decryptBlock(data, finalize, iv = null) { method encrypt (line 53168) | encrypt(data, iv) { class AES128Cipher (line 53203) | class AES128Cipher extends AESBaseCipher { method constructor (line 53205) | constructor(key) { method _expandKey (line 53211) | _expandKey(cipherKey) { class AES256Cipher (line 53241) | class AES256Cipher extends AESBaseCipher { method constructor (line 53242) | constructor(key) { method _expandKey (line 53248) | _expandKey(cipherKey) { class PDFBase (line 53289) | class PDFBase { method _hash (line 53290) | _hash(password, input, userBytes) { method checkOwnerPassword (line 53293) | checkOwnerPassword(password, ownerValidationSalt, userBytes, ownerPass... method checkUserPassword (line 53301) | checkUserPassword(password, userValidationSalt, userPassword) { method getOwnerKey (line 53308) | getOwnerKey(password, ownerKeySalt, userBytes, ownerEncryption) { method getUserKey (line 53317) | getUserKey(password, userKeySalt, userEncryption) { class PDF17 (line 53326) | class PDF17 extends PDFBase { method _hash (line 53327) | _hash(password, input, userBytes) { class PDF20 (line 53331) | class PDF20 extends PDFBase { method _hash (line 53332) | _hash(password, input, userBytes) { class CipherTransform (line 53364) | class CipherTransform { method constructor (line 53365) | constructor(stringCipherConstructor, streamCipherConstructor) { method createStream (line 53369) | createStream(stream, length) { method decryptString (line 53375) | decryptString(s) { method encryptString (line 53381) | encryptString(s) { class CipherTransformFactory (line 53401) | class CipherTransformFactory { method _defaultPasswordBytes (line 53402) | static get _defaultPasswordBytes() { method #createEncryptionKey20 (line 53405) | #createEncryptionKey20(revision, password, ownerPassword, ownerValidat... method #prepareKeyData (line 53420) | #prepareKeyData(fileId, password, ownerPassword, userPassword, flags, ... method #decodeUserPassword (line 53480) | #decodeUserPassword(password, ownerPassword, revision, keyLength) { method #buildObjectKey (line 53515) | #buildObjectKey(num, gen, encryptionKey, isAes = false) { method #buildCipherConstructor (line 53534) | #buildCipherConstructor(cf, name, num, gen, key) { method constructor (line 53563) | constructor(dict, fileId, password) { method createCipherTransform (line 53656) | createCipherTransform(num, gen) { class XRef (line 53675) | class XRef { method constructor (line 53677) | constructor(stream, pdfManager) { method getNewPersistentRef (line 53688) | getNewPersistentRef(obj) { method getNewTemporaryRef (line 53696) | getNewTemporaryRef() { method resetNewTemporaryRef (line 53709) | resetNewTemporaryRef() { method setStartXRef (line 53718) | setStartXRef(startXRef) { method parse (line 53721) | parse(recoveryMode = false) { method processXRefTable (line 53774) | processXRefTable(parser) { method readXRefTable (line 53797) | readXRefTable(parser) { method processXRefStream (line 53858) | processXRefStream(stream) { method readXRefStream (line 53877) | readXRefStream(stream) { method indexObjects (line 53944) | indexObjects() { method readXRef (line 54175) | readXRef(recoveryMode = false) { method lastXRefStreamPos (line 54242) | get lastXRefStreamPos() { method getEntry (line 54245) | getEntry(i) { method fetchIfRef (line 54252) | fetchIfRef(obj, suppressEncryption = false) { method fetch (line 54258) | fetch(ref, suppressEncryption = false) { method fetchUncompressed (line 54294) | fetchUncompressed(ref, xrefEntry, suppressEncryption = false) { method fetchCompressed (line 54332) | fetchCompressed(ref, xrefEntry, suppressEncryption = false) { method fetchIfRefAsync (line 54391) | async fetchIfRefAsync(obj, suppressEncryption) { method fetchAsync (line 54397) | async fetchAsync(ref, suppressEncryption) { method getCatalogObj (line 54408) | getCatalogObj() { constant LETTER_SIZE_MEDIABOX (line 54433) | const LETTER_SIZE_MEDIABOX = [0, 0, 612, 792]; class Page (line 54434) | class Page { method constructor (line 54435) | constructor({ method _getInheritableProperty (line 54478) | _getInheritableProperty(key, getArray = false) { method content (line 54496) | get content() { method resources (line 54499) | get resources() { method _getBoundingBox (line 54503) | _getBoundingBox(name) { method mediaBox (line 54516) | get mediaBox() { method cropBox (line 54519) | get cropBox() { method userUnit (line 54522) | get userUnit() { method view (line 54526) | get view() { method rotate (line 54540) | get rotate() { method _onSubStreamError (line 54551) | _onSubStreamError(reason, objId) { method getContentStream (line 54558) | async getContentStream() { method xfaData (line 54568) | get xfaData() { method #replaceIdByRef (line 54573) | async #replaceIdByRef(annotations, deletedAnnotations, existingAnnotat... method saveNewAnnotations (line 54606) | async saveNewAnnotations(handler, task, annotations, imagePromises, ch... method save (line 54647) | async save(handler, task, annotationStorage, changes) { method loadResources (line 54671) | async loadResources(keys) { method getOperatorList (line 54676) | async getOperatorList({ method extractTextContent (line 54816) | async extractTextContent({ method getStructTree (line 54851) | async getStructTree() { method _parseStructTree (line 54860) | _parseStructTree(structTreeRoot) { method getAnnotationsData (line 54865) | async getAnnotationsData(handler, task, intent) { method annotations (line 54903) | get annotations() { method _parsedAnnotations (line 54907) | get _parsedAnnotations() { method jsActions (line 54950) | get jsActions() { constant PDF_HEADER_SIGNATURE (line 54955) | const PDF_HEADER_SIGNATURE = new Uint8Array([0x25, 0x50, 0x44, 0x46, 0x2... constant STARTXREF_SIGNATURE (line 54956) | const STARTXREF_SIGNATURE = new Uint8Array([0x73, 0x74, 0x61, 0x72, 0x74... constant ENDOBJ_SIGNATURE (line 54957) | const ENDOBJ_SIGNATURE = new Uint8Array([0x65, 0x6e, 0x64, 0x6f, 0x62, 0... function find (line 54958) | function find(stream, signature, limit = 1024, backwards = false) { class PDFDocument (line 54995) | class PDFDocument { method constructor (line 54996) | constructor(pdfManager, stream) { method parse (line 55023) | parse(recoveryMode) { method linearization (line 55027) | get linearization() { method startXRef (line 55039) | get startXRef() { method checkHeader (line 55085) | checkHeader() { method parseStartXRef (line 55104) | parseStartXRef() { method numPages (line 55107) | get numPages() { method _hasOnlyDocumentSignatures (line 55120) | _hasOnlyDocumentSignatures(fields, recursionDepth = 0) { method _xfaStreams (line 55143) | get _xfaStreams() { method xfaDatasets (line 55186) | get xfaDatasets() { method xfaData (line 55209) | get xfaData() { method xfaFactory (line 55228) | get xfaFactory() { method isPureXfa (line 55235) | get isPureXfa() { method htmlForXfa (line 55238) | get htmlForXfa() { method loadXfaImages (line 55241) | async loadXfaImages() { method loadXfaFonts (line 55258) | async loadXfaFonts(handler, task) { method serializeXfaData (line 55374) | async serializeXfaData(annotationStorage) { method version (line 55377) | get version() { method formInfo (line 55380) | get formInfo() { method documentInfo (line 55410) | get documentInfo() { method fingerprints (line 55484) | get fingerprints() { method _getLinearizationPage (line 55502) | async _getLinearizationPage(pageIndex) { method getPage (line 55532) | getPage(pageIndex) { method checkFirstPage (line 55569) | async checkFirstPage(recoveryMode = false) { method checkLastPage (line 55583) | async checkLastPage(recoveryMode = false) { method fontFallback (line 55650) | async fontFallback(id, handler) { method cleanup (line 55662) | async cleanup(manuallyTriggered = false) { method #collectFieldObjects (line 55665) | async #collectFieldObjects(name, parentRef, fieldRef, promises, annota... method fieldObjects (line 55726) | get fieldObjects() { method hasJSActions (line 55759) | get hasJSActions() { method _parseHasJSActions (line 55763) | async _parseHasJSActions() { method calculationOrderIds (line 55773) | get calculationOrderIds() { method annotationGlobals (line 55786) | get annotationGlobals() { function parseDocBaseUrl (line 55801) | function parseDocBaseUrl(url) { class BasePdfManager (line 55811) | class BasePdfManager { method constructor (line 55812) | constructor({ method docId (line 55837) | get docId() { method password (line 55840) | get password() { method docBaseUrl (line 55843) | get docBaseUrl() { method catalog (line 55846) | get catalog() { method ensureDoc (line 55849) | ensureDoc(prop, args) { method ensureXRef (line 55852) | ensureXRef(prop, args) { method ensureCatalog (line 55855) | ensureCatalog(prop, args) { method getPage (line 55858) | getPage(pageIndex) { method fontFallback (line 55861) | fontFallback(id, handler) { method loadXfaFonts (line 55864) | loadXfaFonts(handler, task) { method loadXfaImages (line 55867) | loadXfaImages() { method serializeXfaData (line 55870) | serializeXfaData(annotationStorage) { method cleanup (line 55873) | cleanup(manuallyTriggered = false) { method ensure (line 55876) | async ensure(obj, prop, args) { method requestRange (line 55879) | requestRange(begin, end) { method requestLoadedStream (line 55882) | requestLoadedStream(noFetch = false) { method sendProgressiveData (line 55885) | sendProgressiveData(chunk) { method updatePassword (line 55888) | updatePassword(password) { method terminate (line 55891) | terminate(reason) { class LocalPdfManager (line 55895) | class LocalPdfManager extends BasePdfManager { method constructor (line 55896) | constructor(args) { method ensure (line 55902) | async ensure(obj, prop, args) { method requestRange (line 55909) | requestRange(begin, end) { method requestLoadedStream (line 55912) | requestLoadedStream(noFetch = false) { method terminate (line 55915) | terminate(reason) {} class NetworkPdfManager (line 55917) | class NetworkPdfManager extends BasePdfManager { method constructor (line 55918) | constructor(args) { method ensure (line 55928) | async ensure(obj, prop, args) { method requestRange (line 55943) | requestRange(begin, end) { method requestLoadedStream (line 55946) | requestLoadedStream(noFetch = false) { method sendProgressiveData (line 55949) | sendProgressiveData(chunk) { method terminate (line 55954) | terminate(reason) { function onFn (line 55975) | function onFn() {} function wrapReason (line 55976) | function wrapReason(ex) { class MessageHandler (line 55997) | class MessageHandler { method constructor (line 55999) | constructor(sourceName, targetName, comObj) { method #onMessage (line 56013) | #onMessage({ method on (line 56072) | on(actionName, handler) { method send (line 56079) | send(actionName, data, transfers) { method sendWithPromise (line 56087) | sendWithPromise(actionName, data, transfers) { method sendWithStream (line 56104) | sendWithStream(actionName, data, queueingStrategy, transfers) { method #createStreamSink (line 56157) | #createStreamSink(data) { method #processStreamMessage (line 56238) | #processStreamMessage(data) { method #deleteStreamController (line 56352) | async #deleteStreamController(streamController, streamId) { method destroy (line 56356) | destroy() { function writeObject (line 56370) | async function writeObject(ref, obj, buffer, { function writeDict (line 56384) | async function writeDict(dict, buffer, transform) { function writeStream (line 56392) | async function writeStream(stream, buffer, transform) { function writeArray (line 56439) | async function writeArray(array, buffer, transform) { function writeValue (line 56452) | async function writeValue(value, buffer, transform) { function writeInt (line 56478) | function writeInt(number, size, offset, buffer) { function writeString (line 56485) | function writeString(string, offset, buffer) { function computeMD5 (line 56492) | function computeMD5(filesize, xrefInfo) { function writeXFADataForAcroform (line 56504) | function writeXFADataForAcroform(str, changes) { function updateAcroform (line 56536) | async function updateAcroform({ function updateXFA (line 56566) | function updateXFA({ function getXRefTable (line 56583) | async function getXRefTable(xrefInfo, baseOffset, newRefs, newXref, buff... function getIndexes (line 56607) | function getIndexes(newRefs) { function getXRefStreamTable (line 56620) | async function getXRefStreamTable(xrefInfo, baseOffset, newRefs, newXref... function computeIDs (line 56659) | function computeIDs(baseOffset, xrefInfo, newXref) { function getTrailerDict (line 56665) | function getTrailerDict(xrefInfo, changes, useXrefStream) { function writeChanges (line 56689) | async function writeChanges(changes, xref, buffer = []) { function incrementalUpdate (line 56710) | async function incrementalUpdate({ class PDFWorkerStream (line 56771) | class PDFWorkerStream { method constructor (line 56772) | constructor(msgHandler) { method getFullReader (line 56778) | getFullReader() { method getRangeReader (line 56783) | getRangeReader(begin, end) { method cancelAllRequests (line 56788) | cancelAllRequests(reason) { class PDFWorkerStreamReader (line 56795) | class PDFWorkerStreamReader { method constructor (line 56796) | constructor(msgHandler) { method headersReady (line 56810) | get headersReady() { method contentLength (line 56813) | get contentLength() { method isStreamingSupported (line 56816) | get isStreamingSupported() { method isRangeSupported (line 56819) | get isRangeSupported() { method read (line 56822) | async read() { method cancel (line 56838) | cancel(reason) { class PDFWorkerStreamRangeReader (line 56842) | class PDFWorkerStreamRangeReader { method constructor (line 56843) | constructor(begin, end, msgHandler) { method isStreamingSupported (line 56852) | get isStreamingSupported() { method read (line 56855) | async read() { method cancel (line 56871) | cancel(reason) { class WorkerTask (line 56887) | class WorkerTask { method constructor (line 56888) | constructor(name) { method finished (line 56893) | get finished() { method finish (line 56896) | finish() { method terminate (line 56899) | terminate() { method ensureNotTerminated (line 56902) | ensureNotTerminated() { class WorkerMessageHandler (line 56908) | class WorkerMessageHandler { method setup (line 56914) | static setup(handler, port) { method createDocumentHandler (line 56928) | static createDocumentHandler(docParams, port) { method initializeFromPort (line 57461) | static initializeFromPort(port) { FILE: cookbook/static/pdfjs/web/viewer.mjs constant DEFAULT_SCALE_VALUE (line 110) | const DEFAULT_SCALE_VALUE = "auto"; constant DEFAULT_SCALE (line 111) | const DEFAULT_SCALE = 1.0; constant DEFAULT_SCALE_DELTA (line 112) | const DEFAULT_SCALE_DELTA = 1.1; constant MIN_SCALE (line 113) | const MIN_SCALE = 0.1; constant MAX_SCALE (line 114) | const MAX_SCALE = 10.0; constant UNKNOWN_SCALE (line 115) | const UNKNOWN_SCALE = 0; constant MAX_AUTO_SCALE (line 116) | const MAX_AUTO_SCALE = 1.25; constant SCROLLBAR_PADDING (line 117) | const SCROLLBAR_PADDING = 40; constant VERTICAL_PADDING (line 118) | const VERTICAL_PADDING = 5; function scrollIntoView (line 163) | function scrollIntoView(element, spot, scrollMatches = false) { function watchScroll (line 190) | function watchScroll(viewAreaElement, callback, abortSignal = undefined) { function parseQueryString (line 229) | function parseQueryString(query) { function removeNullCharacters (line 237) | function removeNullCharacters(str, replaceInvisible = false) { function binarySearchFirstItem (line 246) | function binarySearchFirstItem(items, condition, start = 0) { function approximateFraction (line 266) | function approximateFraction(x) { function floorToDivide (line 304) | function floorToDivide(x, div) { function getPageSizeInches (line 307) | function getPageSizeInches({ function backtrackBeforeAllVisibleElements (line 321) | function backtrackBeforeAllVisibleElements(index, views, top) { function getVisibleElements (line 340) | function getVisibleElements({ function normalizeWheelEventDirection (line 430) | function normalizeWheelEventDirection(evt) { function normalizeWheelEventDelta (line 438) | function normalizeWheelEventDelta(evt) { function isValidRotation (line 450) | function isValidRotation(angle) { function isValidScrollMode (line 453) | function isValidScrollMode(mode) { function isValidSpreadMode (line 456) | function isValidSpreadMode(mode) { function isPortraitOrientation (line 459) | function isPortraitOrientation(size) { class ProgressBar (line 466) | class ProgressBar { method constructor (line 472) | constructor(bar) { method percent (line 476) | get percent() { method percent (line 479) | set percent(val) { method setWidth (line 488) | setWidth(viewer) { method setDisableAutoFetch (line 498) | setDisableAutoFetch(delay = 5000) { method hide (line 511) | hide() { method show (line 518) | show() { function getActiveOrFocusedElement (line 526) | function getActiveOrFocusedElement() { function apiPageLayoutToViewerModes (line 535) | function apiPageLayoutToViewerModes(layout) { function apiPageModeToSidebarView (line 560) | function apiPageModeToSidebarView(mode) { function toggleCheckedBtn (line 575) | function toggleCheckedBtn(button, toggle, view = null) { function toggleExpandedBtn (line 580) | function toggleExpandedBtn(button, toggle, view = null) { class AppOptions (line 942) | class AppOptions { method get (line 963) | static get(name) { method getAll (line 966) | static getAll(kind = null, defaultOnly = false) { method set (line 977) | static set(name, value) { method setAll (line 982) | static setAll(options, prefs = false) { constant DEFAULT_LINK_REL (line 1016) | const DEFAULT_LINK_REL = "noopener noreferrer nofollow"; class PDFLinkService (line 1024) | class PDFLinkService { method constructor (line 1026) | constructor({ method setDocument (line 1041) | setDocument(pdfDocument, baseUrl = null) { method setViewer (line 1045) | setViewer(pdfViewer) { method setHistory (line 1048) | setHistory(pdfHistory) { method pagesCount (line 1051) | get pagesCount() { method page (line 1054) | get page() { method page (line 1057) | set page(value) { method rotation (line 1062) | get rotation() { method rotation (line 1065) | set rotation(value) { method isInPresentationMode (line 1070) | get isInPresentationMode() { method goToDestination (line 1073) | async goToDestination(dest) { method goToPage (line 1121) | goToPage(val) { method addLinkAttributes (line 1138) | addLinkAttributes(link, url, newWindow = false) { method getDestinationHash (line 1171) | getDestinationHash(dest) { method getAnchorUrl (line 1184) | getAnchorUrl(anchor) { method setHash (line 1187) | setHash(hash) { method executeNamedAction (line 1266) | executeNamedAction(action) { method executeSetOCGState (line 1297) | async executeSetOCGState(action) { class SimpleLinkService (line 1310) | class SimpleLinkService extends PDFLinkService { method setDocument (line 1311) | setDocument(pdfDocument, baseUrl = null) {} function waitOnEventOrTimeout (line 1319) | async function waitOnEventOrTimeout({ class EventBus (line 1344) | class EventBus { method on (line 1346) | on(eventName, listener, options = null) { method off (line 1353) | off(eventName, listener, options = null) { method dispatch (line 1356) | dispatch(eventName, data) { method _on (line 1383) | _on(eventName, listener, options = null) { method _off (line 1405) | _off(eventName, listener, options = null) { class FirefoxEventBus (line 1420) | class FirefoxEventBus extends EventBus { method constructor (line 1424) | constructor(globalEventNames, externalServices, isInAutomation) { method dispatch (line 1430) | dispatch(eventName, data) { class BaseExternalServices (line 1436) | class BaseExternalServices { method updateFindControlState (line 1437) | updateFindControlState(data) {} method updateFindMatchesCount (line 1438) | updateFindMatchesCount(data) {} method initPassiveLoading (line 1439) | initPassiveLoading() {} method reportTelemetry (line 1440) | reportTelemetry(data) {} method createL10n (line 1441) | async createL10n() { method createScripting (line 1444) | createScripting() { method createSignatureStorage (line 1447) | createSignatureStorage() { method updateEditorStates (line 1450) | updateEditorStates(data) { method dispatchGlobalEvent (line 1453) | dispatchGlobalEvent(_event) {} class BasePreferences (line 1458) | class BasePreferences { method constructor (line 1500) | constructor() { method _writeToStorage (line 1514) | async _writeToStorage(prefObj) { method _readFromStorage (line 1517) | async _readFromStorage(prefObj) { method reset (line 1520) | async reset() { method set (line 1525) | async set(name, value) { method get (line 1532) | async get(name) { method initializedPromise (line 1536) | get initializedPromise() { class FluentType (line 1542) | class FluentType { method constructor (line 1543) | constructor(value) { method valueOf (line 1546) | valueOf() { class FluentNone (line 1550) | class FluentNone extends FluentType { method constructor (line 1551) | constructor(value = "???") { method toString (line 1554) | toString(scope) { class FluentNumber (line 1558) | class FluentNumber extends FluentType { method constructor (line 1559) | constructor(value, opts = {}) { method toString (line 1563) | toString(scope) { class FluentDateTime (line 1573) | class FluentDateTime extends FluentType { method constructor (line 1574) | constructor(value, opts = {}) { method toString (line 1578) | toString(scope) { constant MAX_PLACEABLES (line 1590) | const MAX_PLACEABLES = 100; constant FSI (line 1591) | const FSI = "\u2068"; constant PDI (line 1592) | const PDI = "\u2069"; function match (line 1593) | function match(scope, selector, key) { function getDefault (line 1608) | function getDefault(scope, variants, star) { function getArguments (line 1615) | function getArguments(scope, args) { function resolveExpression (line 1630) | function resolveExpression(scope, expr) { function resolveVariableReference (line 1652) | function resolveVariableReference(scope, { function resolveMessageReference (line 1685) | function resolveMessageReference(scope, { function resolveTermReference (line 1708) | function resolveTermReference(scope, { function resolveFunctionReference (line 1735) | function resolveFunctionReference(scope, { function resolveSelectExpression (line 1756) | function resolveSelectExpression(scope, { function resolveComplexPattern (line 1773) | function resolveComplexPattern(scope, ptn) { function resolvePattern (line 1802) | function resolvePattern(scope, value) { class Scope (line 1809) | class Scope { method constructor (line 1810) | constructor(bundle, errors, args) { method reportError (line 1818) | reportError(error) { method memoizeIntlObject (line 1824) | memoizeIntlObject(ctor, opts) { function values (line 1839) | function values(opts, allowed) { constant NUMBER_ALLOWED (line 1848) | const NUMBER_ALLOWED = ["unitDisplay", "currencyDisplay", "useGrouping",... function NUMBER (line 1849) | function NUMBER(args, opts) { constant DATETIME_ALLOWED (line 1867) | const DATETIME_ALLOWED = ["dateStyle", "timeStyle", "fractionalSecondDig... function DATETIME (line 1868) | function DATETIME(args, opts) { function getMemoizerForLocale (line 1888) | function getMemoizerForLocale(locales) { class FluentBundle (line 1903) | class FluentBundle { method constructor (line 1904) | constructor(locales, { method hasMessage (line 1921) | hasMessage(id) { method getMessage (line 1924) | getMessage(id) { method addResource (line 1927) | addResource(res, { method formatPattern (line 1949) | formatPattern(pattern, args = null, errors = null) { constant RE_MESSAGE_START (line 1967) | const RE_MESSAGE_START = /^(-?[a-zA-Z][\w-]*) *= */gm; constant RE_ATTRIBUTE_START (line 1968) | const RE_ATTRIBUTE_START = /\.([a-zA-Z][\w-]*) *= */y; constant RE_VARIANT_START (line 1969) | const RE_VARIANT_START = /\*?\[/y; constant RE_NUMBER_LITERAL (line 1970) | const RE_NUMBER_LITERAL = /(-?[0-9]+(?:\.([0-9]+))?)/y; constant RE_IDENTIFIER (line 1971) | const RE_IDENTIFIER = /([a-zA-Z][\w-]*)/y; constant RE_REFERENCE (line 1972) | const RE_REFERENCE = /([$-])?([a-zA-Z][\w-]*)(?:\.([a-zA-Z][\w-]*))?/y; constant RE_FUNCTION_NAME (line 1973) | const RE_FUNCTION_NAME = /^[A-Z][A-Z0-9_-]*$/; constant RE_TEXT_RUN (line 1974) | const RE_TEXT_RUN = /([^{}\n\r]+)/y; constant RE_STRING_RUN (line 1975) | const RE_STRING_RUN = /([^\\"\n\r]*)/y; constant RE_STRING_ESCAPE (line 1976) | const RE_STRING_ESCAPE = /\\([\\"])/y; constant RE_UNICODE_ESCAPE (line 1977) | const RE_UNICODE_ESCAPE = /\\u([a-fA-F0-9]{4})|\\U([a-fA-F0-9]{6})/y; constant RE_LEADING_NEWLINES (line 1978) | const RE_LEADING_NEWLINES = /^\n+/; constant RE_TRAILING_SPACES (line 1979) | const RE_TRAILING_SPACES = / +$/; constant RE_BLANK_LINES (line 1980) | const RE_BLANK_LINES = / *\r?\n/g; constant RE_INDENT (line 1981) | const RE_INDENT = /( *)$/; constant TOKEN_BRACE_OPEN (line 1982) | const TOKEN_BRACE_OPEN = /{\s*/y; constant TOKEN_BRACE_CLOSE (line 1983) | const TOKEN_BRACE_CLOSE = /\s*}/y; constant TOKEN_BRACKET_OPEN (line 1984) | const TOKEN_BRACKET_OPEN = /\[\s*/y; constant TOKEN_BRACKET_CLOSE (line 1985) | const TOKEN_BRACKET_CLOSE = /\s*] */y; constant TOKEN_PAREN_OPEN (line 1986) | const TOKEN_PAREN_OPEN = /\s*\(\s*/y; constant TOKEN_ARROW (line 1987) | const TOKEN_ARROW = /\s*->\s*/y; constant TOKEN_COLON (line 1988) | const TOKEN_COLON = /\s*:\s*/y; constant TOKEN_COMMA (line 1989) | const TOKEN_COMMA = /\s*,?\s*/y; constant TOKEN_BLANK (line 1990) | const TOKEN_BLANK = /\s+/y; class FluentResource (line 1991) | class FluentResource { method constructor (line 1992) | constructor(source) { class Indent (line 2339) | class Indent { method constructor (line 2340) | constructor(value, length) { constant TEXT_LEVEL_ELEMENTS (line 2351) | const TEXT_LEVEL_ELEMENTS = { constant LOCALIZABLE_ATTRIBUTES (line 2354) | const LOCALIZABLE_ATTRIBUTES = { function translateElement (line 2377) | function translateElement(element, translation) { function overlayChildNodes (line 2394) | function overlayChildNodes(fromFragment, toElement) { function hasAttribute (line 2415) | function hasAttribute(attributes, name) { function overlayAttributes (line 2426) | function overlayAttributes(fromElement, toElement) { function getNodeForNamedElement (line 2442) | function getNodeForNamedElement(sourceElement, translatedChild) { function createSanitizedElement (line 2457) | function createSanitizedElement(element) { function createTextNodeFromTextContent (line 2461) | function createTextNodeFromTextContent(element) { function isElementAllowed (line 2464) | function isElementAllowed(element) { function isAttrNameLocalizable (line 2468) | function isAttrNameLocalizable(name, element, explicitlyAllowed = null) { function shallowPopulateUsing (line 2495) | function shallowPopulateUsing(fromElement, toElement) { class CachedIterable (line 2501) | class CachedIterable extends Array { method from (line 2502) | static from(iterable) { class CachedSyncIterable (line 2511) | class CachedSyncIterable extends CachedIterable { method constructor (line 2512) | constructor(iterable) { method touchNext (line 2532) | touchNext(count = 1) { method [Symbol.iterator] (line 2520) | [Symbol.iterator]() { class CachedAsyncIterable (line 2546) | class CachedAsyncIterable extends CachedIterable { method constructor (line 2547) | constructor(iterable) { method touchNext (line 2569) | async touchNext(count = 1) { method [Symbol.asyncIterator] (line 2557) | [Symbol.asyncIterator]() { class Localization (line 2586) | class Localization { method constructor (line 2587) | constructor(resourceIds = [], generateBundles) { method addResourceIds (line 2592) | addResourceIds(resourceIds, eager = false) { method removeResourceIds (line 2597) | removeResourceIds(resourceIds) { method formatWithFallback (line 2602) | async formatWithFallback(keys, method) { method formatMessages (line 2624) | formatMessages(keys) { method formatValues (line 2627) | formatValues(keys) { method formatValue (line 2630) | async formatValue(id, args) { method handleEvent (line 2637) | handleEvent() { method onChange (line 2640) | onChange(eager = false) { function valueFromBundle (line 2647) | function valueFromBundle(bundle, errors, message, args) { function messageFromBundle (line 2653) | function messageFromBundle(bundle, errors, message, args) { function keysFromBundle (line 2674) | function keysFromBundle(method, bundle, keys, translations) { constant L10NID_ATTR_NAME (line 2702) | const L10NID_ATTR_NAME = "data-l10n-id"; constant L10NARGS_ATTR_NAME (line 2703) | const L10NARGS_ATTR_NAME = "data-l10n-args"; constant L10N_ELEMENT_QUERY (line 2704) | const L10N_ELEMENT_QUERY = `[${L10NID_ATTR_NAME}]`; class DOMLocalization (line 2705) | class DOMLocalization extends Localization { method constructor (line 2706) | constructor(resourceIds, generateBundles) { method onChange (line 2721) | onChange(eager = false) { method setAttributes (line 2727) | setAttributes(element, id, args) { method getAttributes (line 2736) | getAttributes(element) { method connectRoot (line 2742) | connectRoot(newRoot) { method disconnectRoot (line 2760) | disconnectRoot(root) { method translateRoots (line 2776) | translateRoots() { method pauseObserving (line 2780) | pauseObserving() { method resumeObserving (line 2787) | resumeObserving() { method translateMutations (line 2795) | translateMutations(mutations) { method translateFragment (line 2828) | translateFragment(frag) { method translateElements (line 2831) | async translateElements(elements) { method applyTranslations (line 2839) | applyTranslations(elements, translations) { method getTranslatables (line 2848) | getTranslatables(element) { method getKeysForElement (line 2855) | getKeysForElement(element) { class L10n (line 2866) | class L10n { method constructor (line 2871) | constructor({ method _setL10n (line 2879) | _setL10n(l10n) { method getLanguage (line 2882) | getLanguage() { method getDirection (line 2885) | getDirection() { method get (line 2888) | async get(ids, args = null, fallback) { method translate (line 2902) | async translate(element) { method translateOnce (line 2909) | async translateOnce(element) { method destroy (line 2916) | async destroy() { method pause (line 2926) | pause() { method resume (line 2929) | resume() { method #fixupLangCode (line 2932) | static #fixupLangCode(langCode) { method #isRTL (line 2952) | static #isRTL(lang) { function PLATFORM (line 2964) | function PLATFORM() { function createBundle (line 2985) | function createBundle(lang, text) { class genericl10n_GenericL10n (line 2998) | class genericl10n_GenericL10n extends L10n { method constructor (line 2999) | constructor(lang) { method #generateBundles (line 3006) | static async *#generateBundles(defaultLang, baseLang) { method #createBundle (line 3029) | static async #createBundle(lang, baseURL, paths) { method #getPaths (line 3038) | static async #getPaths() { method #generateBundlesFallback (line 3054) | static async *#generateBundlesFallback(lang) { method #createBundleFallback (line 3057) | static async #createBundleFallback(lang) { function docProperties (line 3065) | async function docProperties(pdfDocument) { class GenericScripting (line 3085) | class GenericScripting { method constructor (line 3086) | constructor(sandboxBundleSrc) { method createSandbox (line 3097) | async createSandbox(data) { method dispatchEventInSandbox (line 3101) | async dispatchEventInSandbox(event) { method destroySandbox (line 3105) | async destroySandbox() { constant KEY_STORAGE (line 3113) | const KEY_STORAGE = "pdfjs.signature"; class SignatureStorage (line 3114) | class SignatureStorage { method constructor (line 3118) | constructor(eventBus, signal) { method #save (line 3122) | #save() { method getAll (line 3125) | async getAll() { method isFull (line 3152) | async isFull() { method size (line 3155) | async size() { method create (line 3158) | async create(data) { method delete (line 3167) | async delete(uuid) { function initCom (line 3185) | function initCom(app) {} class Preferences (line 3186) | class Preferences extends BasePreferences { method _writeToStorage (line 3187) | async _writeToStorage(prefObj) { method _readFromStorage (line 3190) | async _readFromStorage(prefObj) { class ExternalServices (line 3196) | class ExternalServices extends BaseExternalServices { method createL10n (line 3197) | async createL10n() { method createScripting (line 3200) | createScripting() { method createSignatureStorage (line 3203) | createSignatureStorage(eventBus, signal) { class MLManager (line 3207) | class MLManager { method isEnabledFor (line 3208) | async isEnabledFor(_name) { method deleteModel (line 3211) | async deleteModel(_service) { method isReady (line 3214) | isReady(_name) { method guess (line 3217) | guess(_data) {} method toggleService (line 3218) | toggleService(_name, _enabled) {} class NewAltTextManager (line 3223) | class NewAltTextManager { method constructor (line 3249) | constructor({ method #toggleLoading (line 3334) | #toggleLoading(value) { method #toggleError (line 3341) | #toggleError(value) { method #toggleGuessAltText (line 3347) | async #toggleGuessAltText(value, isInitial = false) { method #toggleNotNow (line 3367) | #toggleNotNow() { method #toggleAI (line 3371) | #toggleAI(value) { method #toggleTitleAndDisclaimer (line 3379) | #toggleTitleAndDisclaimer() { method #mlGuessAltText (line 3389) | async #mlGuessAltText(isInitial) { method #addAltText (line 3426) | #addAltText(altText) { method #setProgress (line 3433) | #setProgress() { method editAltText (line 3467) | async editAltText(uiManager, editor, firstTime) { method #cancel (line 3536) | #cancel() { method #finish (line 3557) | #finish() { method #close (line 3560) | #close() { method #extractWords (line 3572) | #extractWords(text) { method #save (line 3575) | #save() { method destroy (line 3610) | destroy() { class ImageAltTextSettings (line 3615) | class ImageAltTextSettings { method constructor (line 3624) | constructor({ method #reportTelemetry (line 3693) | #reportTelemetry(data) { method #download (line 3702) | async #download(isFromUI = false) { method #delete (line 3718) | async #delete(isFromUI = false) { method open (line 3728) | async open({ method #togglePref (line 3745) | #togglePref(name, { method #setPref (line 3753) | #setPref(name, value) { method #finish (line 3760) | #finish() { class AltTextManager (line 3767) | class AltTextManager { method constructor (line 3786) | constructor({ method #createSVGElement (line 3816) | #createSVGElement() { method editAltText (line 3842) | async editAltText(uiManager, editor) { method #setPosition (line 3884) | #setPosition() { method #finish (line 3960) | #finish() { method #close (line 3963) | #close() { method #updateUIState (line 3977) | #updateUIState() { method #save (line 3980) | #save() { method #onClick (line 3996) | #onClick(evt) { method #removeOnClickListeners (line 4003) | #removeOnClickListeners() { method destroy (line 4007) | destroy() { class AnnotationEditorParams (line 4017) | class AnnotationEditorParams { method constructor (line 4018) | constructor(options, eventBus) { method #bindListeners (line 4022) | #bindListeners({ constant PRECISION (line 4121) | const PRECISION = 1e-1; class CaretBrowsingMode (line 4122) | class CaretBrowsingMode { method constructor (line 4126) | constructor(abortSignal, mainContainer, viewerContainer, toolbarContai... method #isOnSameLine (line 4146) | #isOnSameLine(rect1, rect2) { method #isUnderOver (line 4155) | #isUnderOver(rect, x, y, isUp) { method #isVisible (line 4159) | #isVisible(rect) { method #getCaretPosition (line 4162) | #getCaretPosition(selection, isUp) { method #caretPositionFromPoint (line 4173) | static #caretPositionFromPoint(x, y) { method #setCaretPositionHelper (line 4186) | #setCaretPositionHelper(selection, caretX, select, element, rect) { method #setCaretPosition (line 4243) | #setCaretPosition(select, selection, newLineElement, newLineElementRec... method #getNodeOnNextPage (line 4253) | #getNodeOnNextPage(textLayer, isUp) { method moveCaret (line 4269) | moveCaret(isUp, select) { function download (line 4338) | function download(blobUrl, filename) { class DownloadManager (line 4352) | class DownloadManager { method downloadData (line 4354) | downloadData(data, filename, contentType) { method openOrDownloadData (line 4360) | openOrDownloadData(data, filename, dest = null) { method download (line 4388) | download(data, url, filename) { class EditorUndoBar (line 4407) | class EditorUndoBar { method constructor (line 4425) | constructor({ method destroy (line 4437) | destroy() { method show (line 4442) | show(undoAction, messageData) { method hide (line 4477) | hide() { class OverlayManager (line 4493) | class OverlayManager { method active (line 4496) | get active() { method register (line 4499) | async register(dialog, canForceClose = false) { method open (line 4516) | async open(dialog) { method close (line 4531) | async close(dialog = this.#active) { method closeIfActive (line 4542) | async closeIfActive(dialog) { class PasswordPrompt (line 4551) | class PasswordPrompt { method constructor (line 4555) | constructor(options, overlayManager, isViewerEmbedded = false) { method open (line 4573) | async open() { method close (line 4588) | async close() { method #verify (line 4591) | #verify() { method #cancel (line 4597) | #cancel() { method #invokeCallback (line 4601) | #invokeCallback(password) { method setUpdateCallback (line 4610) | async setUpdateCallback(updateCallback, reason) { constant TREEITEM_OFFSET_TOP (line 4621) | const TREEITEM_OFFSET_TOP = -100; constant TREEITEM_SELECTED_CLASS (line 4622) | const TREEITEM_SELECTED_CLASS = "selected"; class BaseTreeViewer (line 4623) | class BaseTreeViewer { method constructor (line 4624) | constructor(options) { method reset (line 4630) | reset() { method _dispatchEvent (line 4637) | _dispatchEvent(count) { method _bindLink (line 4640) | _bindLink(element, params) { method _normalizeTextContent (line 4643) | _normalizeTextContent(str) { method _addToggleButton (line 4646) | _addToggleButton(div, hidden = false) { method _toggleTreeItem (line 4662) | _toggleTreeItem(root, show = false) { method _toggleAllTreeItems (line 4670) | _toggleAllTreeItems() { method _finishRendering (line 4673) | _finishRendering(fragment, count, hasAnyNesting = false) { method render (line 4683) | render(params) { method _updateCurrentTreeItem (line 4686) | _updateCurrentTreeItem(treeItem = null) { method _scrollToCurrentTreeItem (line 4696) | _scrollToCurrentTreeItem(treeItem) { class PDFAttachmentViewer (line 4718) | class PDFAttachmentViewer extends BaseTreeViewer { method constructor (line 4719) | constructor(options) { method reset (line 4724) | reset(keepRenderedCapability = false) { method _dispatchEvent (line 4732) | async _dispatchEvent(attachmentsCount) { method _bindLink (line 4751) | _bindLink(element, { method render (line 4764) | render({ method #appendAttachment (line 4791) | #appendAttachment(item) { constant CSS_CLASS_GRAB (line 4814) | const CSS_CLASS_GRAB = "grab-to-pan-grab"; class GrabToPan (line 4815) | class GrabToPan { method constructor (line 4819) | constructor({ method activate (line 4827) | activate() { method deactivate (line 4837) | deactivate() { method toggle (line 4845) | toggle() { method ignoreTarget (line 4852) | ignoreTarget(node) { method #onMouseDown (line 4855) | #onMouseDown(event) { method #onMouseMove (line 4889) | #onMouseMove(event) { method #endPan (line 4907) | #endPan() { class PDFCursorTools (line 4920) | class PDFCursorTools { method constructor (line 4923) | constructor({ method activeTool (line 4935) | get activeTool() { method switchTool (line 4938) | switchTool(tool) { method #switchTool (line 4944) | #switchTool(tool, disabled = false) { method #addEventListeners (line 4985) | #addEventListeners() { method _handTool (line 5028) | get _handTool() { constant NON_METRIC_LOCALES (line 5038) | const NON_METRIC_LOCALES = ["en-us", "en-lr", "my"]; constant US_PAGE_NAMES (line 5039) | const US_PAGE_NAMES = { constant METRIC_PAGE_NAMES (line 5043) | const METRIC_PAGE_NAMES = { function getPageName (line 5047) | function getPageName(size, isPortrait, pageNames) { class PDFDocumentProperties (line 5052) | class PDFDocumentProperties { method constructor (line 5054) | constructor({ method open (line 5074) | async open() { method close (line 5117) | async close() { method setDocument (line 5120) | setDocument(pdfDocument) { method #reset (line 5131) | #reset() { method #updateUI (line 5138) | #updateUI() { method #parseFileSize (line 5147) | async #parseFileSize(b = 0) { method #parsePageSize (line 5156) | async #parsePageSize(pageSizeInches, pagesRotation) { method #parseDate (line 5209) | async #parseDate(inputDate) { method #parseLinearization (line 5215) | #parseLinearization(isLinearized) { function isAlphabeticalScript (line 5231) | function isAlphabeticalScript(charCode) { function isAscii (line 5234) | function isAscii(charCode) { function isAsciiAlpha (line 5237) | function isAsciiAlpha(charCode) { function isAsciiDigit (line 5240) | function isAsciiDigit(charCode) { function isAsciiSpace (line 5243) | function isAsciiSpace(charCode) { function isHan (line 5246) | function isHan(charCode) { function isKatakana (line 5249) | function isKatakana(charCode) { function isHiragana (line 5252) | function isHiragana(charCode) { function isHalfwidthKatakana (line 5255) | function isHalfwidthKatakana(charCode) { function isThai (line 5258) | function isThai(charCode) { function getCharacterType (line 5261) | function getCharacterType(charCode) { function getNormalizeWithNFKC (line 5289) | function getNormalizeWithNFKC() { constant FIND_TIMEOUT (line 5303) | const FIND_TIMEOUT = 250; constant MATCH_SCROLL_OFFSET_TOP (line 5304) | const MATCH_SCROLL_OFFSET_TOP = -50; constant MATCH_SCROLL_OFFSET_LEFT (line 5305) | const MATCH_SCROLL_OFFSET_LEFT = -400; constant CHARACTERS_TO_NORMALIZE (line 5306) | const CHARACTERS_TO_NORMALIZE = { constant DIACRITICS_EXCEPTION (line 5320) | const DIACRITICS_EXCEPTION = new Set([0x3099, 0x309a, 0x094d, 0x09cd, 0x... constant DIACRITICS_EXCEPTION_STR (line 5321) | let DIACRITICS_EXCEPTION_STR; constant DIACRITICS_REG_EXP (line 5322) | const DIACRITICS_REG_EXP = /\p{M}+/gu; constant SPECIAL_CHARS_REG_EXP (line 5323) | const SPECIAL_CHARS_REG_EXP = /([.*+?^${}()|[\]\\])|(\p{P})|(\s+)|(\p{M}... constant NOT_DIACRITIC_FROM_END_REG_EXP (line 5324) | const NOT_DIACRITIC_FROM_END_REG_EXP = /([^\p{M}])\p{M}*$/u; constant NOT_DIACRITIC_FROM_START_REG_EXP (line 5325) | const NOT_DIACRITIC_FROM_START_REG_EXP = /^\p{M}*([^\p{M}])/u; constant SYLLABLES_REG_EXP (line 5326) | const SYLLABLES_REG_EXP = /[\uAC00-\uD7AF\uFA6C\uFACF-\uFAD1\uFAD5-\uFAD... constant SYLLABLES_LENGTHS (line 5327) | const SYLLABLES_LENGTHS = new Map(); constant FIRST_CHAR_SYLLABLES_REG_EXP (line 5328) | const FIRST_CHAR_SYLLABLES_REG_EXP = "[\\u1100-\\u1112\\ud7a4-\\ud7af\\u... constant NFKC_CHARS_TO_NORMALIZE (line 5329) | const NFKC_CHARS_TO_NORMALIZE = new Map(); function normalize (line 5332) | function normalize(text) { function getOriginalIndex (line 5489) | function getOriginalIndex(diffs, pos, len) { class PDFFindController (line 5509) | class PDFFindController { method constructor (line 5513) | constructor({ method highlightMatches (line 5526) | get highlightMatches() { method pageMatches (line 5529) | get pageMatches() { method pageMatchesLength (line 5532) | get pageMatchesLength() { method selected (line 5535) | get selected() { method state (line 5538) | get state() { method setDocument (line 5541) | setDocument(pdfDocument) { method #onFind (line 5551) | #onFind(state) { method scrollMatchIntoView (line 5601) | scrollMatchIntoView({ method #reset (line 5621) | #reset() { method #query (line 5651) | get #query() { method #shouldDirtyMatch (line 5664) | #shouldDirtyMatch(state) { method #isEntireWord (line 5689) | #isEntireWord(content, startIdx, length) { method #convertToRegExpString (line 5708) | #convertToRegExpString(query, hasDiacritics) { method #calculateMatch (line 5748) | #calculateMatch(pageIndex) { method match (line 5785) | match(query, pageContent, pageIndex) { method #extractText (line 5819) | #extractText() { method #updatePage (line 5852) | #updatePage(index) { method #updateAllPages (line 5861) | #updateAllPages() { method #nextMatch (line 5867) | #nextMatch() { method #matchesReady (line 5916) | #matchesReady(matches) { method #nextPageMatch (line 5935) | #nextPageMatch() { method #advanceOffsetPage (line 5949) | #advanceOffsetPage(previous) { method #updateMatch (line 5960) | #updateMatch(found = false) { method #onFindBarClose (line 5979) | #onFindBarClose(evt) { method #requestMatchesCount (line 5998) | #requestMatchesCount() { method #updateUIResultsCount (line 6019) | #updateUIResultsCount() { method #updateUIState (line 6025) | #updateUIState(state, previous = false) { constant MATCHES_COUNT_LIMIT (line 6043) | const MATCHES_COUNT_LIMIT = 1000; class PDFFindBar (line 6044) | class PDFFindBar { method constructor (line 6047) | constructor(options, mainContainer, eventBus) { method reset (line 6100) | reset() { method dispatchEvent (line 6103) | dispatchEvent(type, findPrev = false) { method updateUIState (line 6115) | updateUIState(state, previous, matchesCount) { method updateResultsCount (line 6147) | updateResultsCount({ method open (line 6167) | open() { method close (line 6177) | close() { method toggle (line 6188) | toggle() { method #resizeObserverCallback (line 6195) | #resizeObserverCallback() { constant HASH_CHANGE_TIMEOUT (line 6211) | const HASH_CHANGE_TIMEOUT = 1000; constant POSITION_UPDATED_THRESHOLD (line 6212) | const POSITION_UPDATED_THRESHOLD = 50; constant UPDATE_VIEWAREA_TIMEOUT (line 6213) | const UPDATE_VIEWAREA_TIMEOUT = 1000; function getCurrentHash (line 6214) | function getCurrentHash() { class PDFHistory (line 6217) | class PDFHistory { method constructor (line 6219) | constructor({ method initialize (line 6237) | initialize({ method reset (line 6293) | reset() { method push (line 6306) | push({ method pushPage (line 6353) | pushPage(pageNumber) { method pushCurrentPosition (line 6380) | pushCurrentPosition() { method back (line 6386) | back() { method forward (line 6395) | forward() { method popStateInProgress (line 6404) | get popStateInProgress() { method initialBookmark (line 6407) | get initialBookmark() { method initialRotation (line 6410) | get initialRotation() { method #pushOrReplaceState (line 6413) | #pushOrReplaceState(destination, forceReplace = false) { method #tryPushCurrentPosition (line 6434) | #tryPushCurrentPosition(temporary = false) { method #isValidPage (line 6466) | #isValidPage(val) { method #isValidState (line 6469) | #isValidState(state, checkReload = false) { method #updateInternalState (line 6494) | #updateInternalState(destination, uid, removeTemporary = false) { method #parseCurrentHash (line 6507) | #parseCurrentHash(checkNameddest = false) { method #updateViewarea (line 6521) | #updateViewarea({ method #popState (line 6549) | #popState({ method #pageHide (line 6599) | #pageHide() { method #bindEvents (line 6604) | #bindEvents() { method #unbindEvents (line 6622) | #unbindEvents() { function isDestHashesEqual (line 6627) | function isDestHashesEqual(destHash, pushHash) { function isDestArraysEqual (line 6640) | function isDestArraysEqual(firstDest, secondDest) { class PDFLayerViewer (line 6677) | class PDFLayerViewer extends BaseTreeViewer { method constructor (line 6678) | constructor(options) { method reset (line 6688) | reset() { method _dispatchEvent (line 6694) | _dispatchEvent(layersCount) { method _bindLink (line 6700) | _bindLink(element, { method _setNestedName (line 6728) | _setNestedName(element, { method _addToggleButton (line 6739) | _addToggleButton(div, { method _toggleAllTreeItems (line 6744) | _toggleAllTreeItems() { method render (line 6750) | render({ method #updateLayers (line 6814) | async #updateLayers(promise = null) { class PDFOutlineViewer (line 6848) | class PDFOutlineViewer extends BaseTreeViewer { method constructor (line 6849) | constructor(options) { method reset (line 6866) | reset() { method _dispatchEvent (line 6875) | _dispatchEvent(outlineCount) { method _bindLink (line 6888) | _bindLink(element, { method _setStyles (line 6936) | _setStyles(element, { method _addToggleButton (line 6947) | _addToggleButton(div, { method _toggleAllTreeItems (line 6973) | _toggleAllTreeItems() { method render (line 6979) | render({ method _currentOutlineItem (line 7026) | async _currentOutlineItem() { method _getPageNumberToDestHash (line 7054) | async _getPageNumberToDestHash(pdfDocument) { constant DELAY_BEFORE_HIDING_CONTROLS (line 7110) | const DELAY_BEFORE_HIDING_CONTROLS = 3000; constant ACTIVE_SELECTOR (line 7111) | const ACTIVE_SELECTOR = "pdfPresentationMode"; constant CONTROLS_SELECTOR (line 7112) | const CONTROLS_SELECTOR = "pdfPresentationModeControls"; constant MOUSE_SCROLL_COOLDOWN_TIME (line 7113) | const MOUSE_SCROLL_COOLDOWN_TIME = 50; constant PAGE_SWITCH_THRESHOLD (line 7114) | const PAGE_SWITCH_THRESHOLD = 0.1; constant SWIPE_MIN_DISTANCE_THRESHOLD (line 7115) | const SWIPE_MIN_DISTANCE_THRESHOLD = 50; constant SWIPE_ANGLE_THRESHOLD (line 7116) | const SWIPE_ANGLE_THRESHOLD = Math.PI / 6; class PDFPresentationMode (line 7117) | class PDFPresentationMode { method constructor (line 7122) | constructor({ method request (line 7135) | async request() { method active (line 7170) | get active() { method #mouseWheel (line 7173) | #mouseWheel(evt) { method #notifyStateChange (line 7197) | #notifyStateChange(state) { method #enter (line 7204) | #enter() { method #exit (line 7225) | #exit() { method #mouseDown (line 7249) | #mouseDown(evt) { method #contextMenu (line 7268) | #contextMenu() { method #showControls (line 7271) | #showControls() { method #hideControls (line 7282) | #hideControls() { method #resetMouseScrollState (line 7290) | #resetMouseScrollState() { method #touchSwipe (line 7294) | #touchSwipe(evt) { method #addWindowListeners (line 7340) | #addWindowListeners() { method #removeWindowListeners (line 7375) | #removeWindowListeners() { method #addFullscreenChangeListeners (line 7379) | #addFullscreenChangeListeners() { method #removeFullscreenChangeListeners (line 7394) | #removeFullscreenChangeListeners() { class XfaLayerBuilder (line 7402) | class XfaLayerBuilder { method constructor (line 7403) | constructor({ method render (line 7416) | async render({ method cancel (line 7458) | cancel() { method hide (line 7461) | hide() { function getXfaHtmlForPrinting (line 7473) | function getXfaHtmlForPrinting(printContainer, pdfDocument) { function renderPage (line 7504) | function renderPage(activeServiceOnEntry, pdfDocument, pageNumber, size,... class PDFPrintService (line 7536) | class PDFPrintService { method constructor (line 7537) | constructor({ method layout (line 7555) | layout() { method destroy (line 7571) | destroy() { method renderPages (line 7589) | renderPages() { method useRenderedPage (line 7610) | useRenderedPage() { method performPrint (line 7632) | performPrint() { method active (line 7645) | get active() { method throwIfInactive (line 7648) | throwIfInactive() { function dispatchEvent (line 7683) | function dispatchEvent(eventType) { function abort (line 7691) | function abort() { function renderProgress (line 7697) | function renderProgress(index, total) { function ensureOverlay (line 7724) | function ensureOverlay() { class PDFPrintServiceFactory (line 7737) | class PDFPrintServiceFactory { method initGlobals (line 7738) | static initGlobals(app) { method supportsPrinting (line 7741) | static get supportsPrinting() { method createPrintService (line 7744) | static createPrintService(params) { constant CLEANUP_TIMEOUT (line 7755) | const CLEANUP_TIMEOUT = 30000; class PDFRenderingQueue (line 7756) | class PDFRenderingQueue { method constructor (line 7757) | constructor() { method setViewer (line 7769) | setViewer(pdfViewer) { method setThumbnailViewer (line 7772) | setThumbnailViewer(pdfThumbnailViewer) { method isHighestPriority (line 7775) | isHighestPriority(view) { method renderHighestPriority (line 7778) | renderHighestPriority(currentlyVisiblePages) { method getHighestPriority (line 7796) | getHighestPriority(visible, views, scrolledDown, preRenderExtra = fals... method isViewFinished (line 7847) | isViewFinished(view) { method renderView (line 7850) | renderView(view) { class PDFScriptingManager (line 7880) | class PDFScriptingManager { method constructor (line 7892) | constructor({ method setViewer (line 7901) | setViewer(pdfViewer) { method setDocument (line 7904) | async setDocument(pdfDocument) { method dispatchWillSave (line 8015) | async dispatchWillSave() { method dispatchDidSave (line 8021) | async dispatchDidSave() { method dispatchWillPrint (line 8027) | async dispatchWillPrint() { method dispatchDidPrint (line 8045) | async dispatchDidPrint() { method destroyPromise (line 8051) | get destroyPromise() { method ready (line 8054) | get ready() { method _pageOpenPending (line 8057) | get _pageOpenPending() { method _visitedPages (line 8060) | get _visitedPages() { method #updateFromSandbox (line 8063) | async #updateFromSandbox(detail) { method #dispatchPageOpen (line 8154) | async #dispatchPageOpen(pageNumber, initialize = false) { method #dispatchPageClose (line 8183) | async #dispatchPageClose(pageNumber) { method #initScripting (line 8207) | #initScripting() { method #destroyScripting (line 8214) | async #destroyScripting() { constant SIDEBAR_WIDTH_VAR (line 8244) | const SIDEBAR_WIDTH_VAR = "--sidebar-width"; constant SIDEBAR_MIN_WIDTH (line 8245) | const SIDEBAR_MIN_WIDTH = 200; constant SIDEBAR_RESIZING_CLASS (line 8246) | const SIDEBAR_RESIZING_CLASS = "sidebarResizing"; constant UI_NOTIFICATION_CLASS (line 8247) | const UI_NOTIFICATION_CLASS = "pdfSidebarNotification"; class PDFSidebar (line 8248) | class PDFSidebar { method constructor (line 8253) | constructor({ method reset (line 8281) | reset() { method visibleView (line 8291) | get visibleView() { method setInitialView (line 8294) | setInitialView(view = SidebarView.NONE) { method switchView (line 8308) | switchView(view, forceOpen = false) { method open (line 8358) | open() { method close (line 8372) | close(evt = null) { method toggle (line 8386) | toggle(evt = null) { method #dispatchEvent (line 8393) | #dispatchEvent() { method #showUINotification (line 8402) | #showUINotification() { method #hideUINotification (line 8408) | #hideUINotification(reset = false) { method #addEventListeners (line 8416) | #addEventListeners() { method outerContainerWidth (line 8524) | get outerContainerWidth() { method #updateWidth (line 8527) | #updateWidth(width = 0) { method #mouseMove (line 8542) | #mouseMove(evt) { method #mouseUp (line 8549) | #mouseUp(evt) { constant DRAW_UPSCALE_FACTOR (line 8563) | const DRAW_UPSCALE_FACTOR = 2; constant MAX_NUM_SCALING_STEPS (line 8564) | const MAX_NUM_SCALING_STEPS = 3; constant THUMBNAIL_WIDTH (line 8565) | const THUMBNAIL_WIDTH = 98; function zeroCanvas (line 8566) | function zeroCanvas(c) { class TempImageFactory (line 8570) | class TempImageFactory { method getCanvas (line 8572) | static getCanvas(width, height) { method destroyCanvas (line 8585) | static destroyCanvas() { class PDFThumbnailView (line 8592) | class PDFThumbnailView { method constructor (line 8593) | constructor({ method #updateDims (line 8645) | #updateDims() { method setPdfPage (line 8660) | setPdfPage(pdfPage) { method reset (line 8670) | reset() { method update (line 8681) | update({ method cancelRendering (line 8694) | cancelRendering() { method #getPageDrawContext (line 8701) | #getPageDrawContext(upscaleFactor = 1, enableHWA = this.enableHWA) { method #convertCanvasToImage (line 8720) | #convertCanvasToImage(canvas) { method draw (line 8735) | async draw() { method setImage (line 8803) | setImage(pageView) { method #getReducedImageDims (line 8824) | #getReducedImageDims(canvas) { method #reduceImage (line 8832) | #reduceImage(img) { method #pageL10nArgs (line 8856) | get #pageL10nArgs() { method setPageLabel (line 8861) | setPageLabel(label) { constant THUMBNAIL_SCROLL_MARGIN (line 8874) | const THUMBNAIL_SCROLL_MARGIN = -19; constant THUMBNAIL_SELECTED_CLASS (line 8875) | const THUMBNAIL_SELECTED_CLASS = "selected"; class PDFThumbnailViewer (line 8876) | class PDFThumbnailViewer { method constructor (line 8877) | constructor({ method #scrollUpdated (line 8899) | #scrollUpdated() { method getThumbnail (line 8902) | getThumbnail(index) { method #getVisibleThumbs (line 8905) | #getVisibleThumbs() { method scrollThumbnailIntoView (line 8911) | scrollThumbnailIntoView(pageNumber) { method pagesRotation (line 8954) | get pagesRotation() { method pagesRotation (line 8957) | set pagesRotation(rotation) { method cleanup (line 8975) | cleanup() { method #resetView (line 8983) | #resetView() { method setDocument (line 8990) | setDocument(pdfDocument) { method #cancelRendering (line 9031) | #cancelRendering() { method setPageLabels (line 9036) | setPageLabels(labels) { method #ensurePdfPageLoaded (line 9052) | async #ensurePdfPageLoaded(thumbView) { method #getScrollAhead (line 9067) | #getScrollAhead(visible) { method forceRendering (line 9075) | forceRendering() { class AnnotationEditorLayerBuilder (line 9092) | class AnnotationEditorLayerBuilder { method constructor (line 9099) | constructor(options) { method render (line 9114) | async render({ method cancel (line 9160) | cancel() { method hide (line 9167) | hide() { method show (line 9174) | show() { class AnnotationLayerBuilder (line 9186) | class AnnotationLayerBuilder { method constructor (line 9192) | constructor({ method render (line 9225) | async render({ method #initAnnotationLayer (line 9280) | #initAnnotationLayer(viewport, structTreeLayer) { method cancel (line 9293) | cancel() { method hide (line 9298) | hide(internal = false) { method hasEditableAnnotations (line 9305) | hasEditableAnnotations() { method injectLinkAnnotations (line 9308) | async injectLinkAnnotations({ method #updatePresentationModeState (line 9333) | #updatePresentationModeState(state) { method #checkInferredLinks (line 9354) | #checkInferredLinks(inferredLinks) { function DOMRectToPDF (line 9413) | function DOMRectToPDF({ function calculateLinkPosition (line 9427) | function calculateLinkPosition(range, pdfPageView) { function textPosition (line 9454) | function textPosition(container, offset) { function createLinkAnnotation (line 9476) | function createLinkAnnotation({ class Autolinker (line 9499) | class Autolinker { method findLinks (line 9502) | static findLinks(text) { method processLinks (line 9531) | static processLinks(pdfPageView) { class BasePDFPageView (line 9539) | class BasePDFPageView { method constructor (line 9553) | constructor(options) { method renderingState (line 9560) | get renderingState() { method renderingState (line 9563) | set renderingState(state) { method _createCanvas (line 9589) | _createCanvas(onShow, hideUntilComplete = false) { method _resetCanvas (line 9635) | _resetCanvas() { method _drawCanvas (line 9646) | async _drawCanvas(options, onCancel, onFinish) { method cancelRendering (line 9677) | cancelRendering({ method dispatchPageRender (line 9686) | dispatchPageRender() { method dispatchPageRendered (line 9692) | dispatchPageRendered(cssTransform, isDetailView) { class DrawLayerBuilder (line 9706) | class DrawLayerBuilder { method constructor (line 9708) | constructor(options) { method render (line 9711) | async render({ method cancel (line 9721) | cancel() { method setParent (line 9729) | setParent(parent) { method getDrawLayer (line 9732) | getDrawLayer() { class PDFPageDetailView (line 9741) | class PDFPageDetailView extends BasePDFPageView { method constructor (line 9744) | constructor({ method setPdfPage (line 9752) | setPdfPage(pdfPage) { method pdfPage (line 9755) | get pdfPage() { method renderingState (line 9758) | get renderingState() { method renderingState (line 9761) | set renderingState(value) { method reset (line 9765) | reset({ method #shouldRenderDifferentArea (line 9776) | #shouldRenderDifferentArea(visibleArea) { method update (line 9806) | update({ method draw (line 9850) | async draw() { constant PDF_ROLE_TO_HTML_ROLE (line 9914) | const PDF_ROLE_TO_HTML_ROLE = { constant HEADING_PATTERN (line 9956) | const HEADING_PATTERN = /^H(\d+)$/; class StructTreeLayerBuilder (line 9957) | class StructTreeLayerBuilder { method constructor (line 9964) | constructor(pdfPage, rawDims) { method render (line 9968) | async render() { method getAriaAttributes (line 9988) | async getAriaAttributes(annotationId) { method hide (line 9995) | hide() { method show (line 10000) | show() { method #setAttributes (line 10005) | #setAttributes(structElement, htmlElement) { method #addImageInTextLayer (line 10036) | #addImageInTextLayer(node, element) { method addElementsToTextLayer (line 10072) | addElementsToTextLayer() { method #walk (line 10082) | #walk(node) { class TextAccessibilityManager (line 10118) | class TextAccessibilityManager { method setTextMapping (line 10123) | setTextMapping(textDivs) { method #compareElementPositions (line 10126) | static #compareElementPositions(e1, e2) { method enable (line 10151) | enable() { method disable (line 10177) | disable() { method removePointerInTextLayer (line 10185) | removePointerInTextLayer(element) { method #addIdToAriaOwns (line 10214) | #addIdToAriaOwns(id, node) { method addPointerInTextLayer (line 10221) | addPointerInTextLayer(element, isRemovable) { method moveElementInDOM (line 10247) | moveElementInDOM(container, element, contentElement, isRemovable) { class TextHighlighter (line 10269) | class TextHighlighter { method constructor (line 10271) | constructor({ method setTextMapping (line 10284) | setTextMapping(divs, texts) { method enable (line 10288) | enable() { method disable (line 10308) | disable() { method _convertMatches (line 10317) | _convertMatches(matches, matchesLength) { method _renderMatches (line 10356) | _renderMatches(matches) { method _updateMatches (line 10462) | _updateMatches(reset = false) { class TextLayerBuilder (line 10498) | class TextLayerBuilder { method constructor (line 10505) | constructor({ method render (line 10521) | async render({ method hide (line 10558) | hide() { method show (line 10564) | show() { method cancel (line 10570) | cancel() { method #bindMouse (line 10577) | #bindMouse(end) { method #removeGlobalSelectionListener (line 10594) | static #removeGlobalSelectionListener(textLayerDiv) { method #enableGlobalSelectionListener (line 10601) | static #enableGlobalSelectionListener() { constant DEFAULT_LAYER_PROPERTIES (line 10704) | const DEFAULT_LAYER_PROPERTIES = null; constant LAYERS_ORDER (line 10705) | const LAYERS_ORDER = new Map([["canvasWrapper", 0], ["textLayer", 1], ["... class PDFPageView (line 10706) | class PDFPageView extends BasePDFPageView { method constructor (line 10726) | constructor(options) { method #addLayer (line 10790) | #addLayer(div, name) { method #setDimensions (line 10807) | #setDimensions() { method setPdfPage (line 10828) | setPdfPage(pdfPage) { method destroy (line 10843) | destroy() { method hasEditableAnnotations (line 10847) | hasEditableAnnotations() { method _textHighlighter (line 10850) | get _textHighlighter() { method #dispatchLayerRendered (line 10857) | #dispatchLayerRendered(name, error) { method #renderAnnotationLayer (line 10864) | async #renderAnnotationLayer() { method #renderAnnotationEditorLayer (line 10879) | async #renderAnnotationEditorLayer() { method #renderDrawLayer (line 10893) | async #renderDrawLayer() { method #renderXfaLayer (line 10902) | async #renderXfaLayer() { method #renderTextLayer (line 10924) | async #renderTextLayer() { method #renderStructTreeLayer (line 10943) | async #renderStructTreeLayer() { method #buildXfaTextContentItems (line 10958) | async #buildXfaTextContentItems(textDivs) { method #injectLinkAnnotations (line 10967) | async #injectLinkAnnotations(textLayerPromise) { method _resetCanvas (line 10984) | _resetCanvas() { method reset (line 10988) | reset({ method toggleEditingMode (line 11053) | toggleEditingMode(isEditing) { method updateVisibleArea (line 11066) | updateVisibleArea(visibleArea) { method update (line 11081) | update({ method #computeScale (line 11155) | #computeScale() { method cancelRendering (line 11170) | cancelRendering({ method cssTransform (line 11206) | cssTransform({ method width (line 11255) | get width() { method height (line 11258) | get height() { method getPagePoint (line 11261) | getPagePoint(x, y) { method _ensureCanvasWrapper (line 11264) | _ensureCanvasWrapper() { method _getRenderingContext (line 11273) | _getRenderingContext(canvasContext, transform) { method draw (line 11285) | async draw() { method setPageLabel (line 11441) | setPageLabel(label) { method thumbnailCanvas (line 11452) | get thumbnailCanvas() { constant DEFAULT_CACHE_SIZE (line 11469) | const DEFAULT_CACHE_SIZE = 10; function isValidAnnotationEditorMode (line 11475) | function isValidAnnotationEditorMode(mode) { class PDFPageViewBuffer (line 11478) | class PDFPageViewBuffer { method constructor (line 11481) | constructor(size) { method push (line 11484) | push(view) { method resize (line 11494) | resize(newSize, idsToKeep = null) { method has (line 11514) | has(view) { method #destroyFirstView (line 11520) | #destroyFirstView() { method [Symbol.iterator] (line 11517) | [Symbol.iterator]() { class PDFViewer (line 11526) | class PDFViewer { method constructor (line 11556) | constructor(options) { method pagesCount (line 11638) | get pagesCount() { method getPageView (line 11641) | getPageView(index) { method getCachedPageViews (line 11644) | getCachedPageViews() { method pageViewsReady (line 11647) | get pageViewsReady() { method renderForms (line 11650) | get renderForms() { method enableScripting (line 11653) | get enableScripting() { method currentPageNumber (line 11656) | get currentPageNumber() { method currentPageNumber (line 11659) | set currentPageNumber(val) { method _setCurrentPageNumber (line 11670) | _setCurrentPageNumber(val, resetCurrentPageView = false) { method currentPageLabel (line 11693) | get currentPageLabel() { method currentPageLabel (line 11696) | set currentPageLabel(val) { method currentScale (line 11711) | get currentScale() { method currentScale (line 11714) | set currentScale(val) { method currentScaleValue (line 11725) | get currentScaleValue() { method currentScaleValue (line 11728) | set currentScaleValue(val) { method pagesRotation (line 11736) | get pagesRotation() { method pagesRotation (line 11739) | set pagesRotation(rotation) { method firstPagePromise (line 11772) | get firstPagePromise() { method onePageRendered (line 11775) | get onePageRendered() { method pagesPromise (line 11778) | get pagesPromise() { method _layerProperties (line 11781) | get _layerProperties() { method #initializePermissions (line 11810) | #initializePermissions(permissions) { method #onePageRenderedOrForceFetch (line 11830) | async #onePageRenderedOrForceFetch(signal) { method getAllText (line 11846) | async getAllText() { method #copyCallback (line 11870) | #copyCallback(textLayerMode, event) { method setDocument (line 11905) | setDocument(pdfDocument) { method setPageLabels (line 12115) | setPageLabels(labels) { method _resetView (line 12131) | _resetView() { method #ensurePageViewVisible (line 12162) | #ensurePageViewVisible() { method _scrollUpdate (line 12207) | _scrollUpdate() { method #scrollIntoView (line 12220) | #scrollIntoView(pageView, pageSpot = null) { method #isSameScale (line 12251) | #isSameScale(newScale) { method #setScaleUpdatePages (line 12254) | #setScaleUpdatePages(newScale, newValue, { method #pageWidthScaleFactor (line 12315) | get #pageWidthScaleFactor() { method #setScale (line 12321) | #setScale(value, options) { method #resetCurrentPageView (line 12370) | #resetCurrentPageView() { method pageLabelToPageNumber (line 12379) | pageLabelToPageNumber(label) { method scrollPageIntoView (line 12389) | scrollPageIntoView({ method _updateLocation (line 12488) | _updateLocation(firstPage) { method update (line 12511) | update() { method #switchToEditAnnotationMode (line 12551) | #switchToEditAnnotationMode() { method containsElement (line 12579) | containsElement(element) { method focus (line 12582) | focus() { method _isContainerRtl (line 12585) | get _isContainerRtl() { method isInPresentationMode (line 12588) | get isInPresentationMode() { method isChangingPresentationMode (line 12591) | get isChangingPresentationMode() { method isHorizontalScrollbarEnabled (line 12594) | get isHorizontalScrollbarEnabled() { method isVerticalScrollbarEnabled (line 12597) | get isVerticalScrollbarEnabled() { method _getVisiblePages (line 12600) | _getVisiblePages() { method cleanup (line 12612) | cleanup() { method _cancelRendering (line 12619) | _cancelRendering() { method #ensurePdfPageLoaded (line 12624) | async #ensurePdfPageLoaded(pageView) { method #getScrollAhead (line 12639) | #getScrollAhead(visible) { method forceRendering (line 12653) | forceRendering(currentlyVisiblePages) { method hasEqualPageSizes (line 12667) | get hasEqualPageSizes() { method getPagesOverview (line 12677) | getPagesOverview() { method optionalContentConfigPromise (line 12700) | get optionalContentConfigPromise() { method optionalContentConfigPromise (line 12712) | set optionalContentConfigPromise(promise) { method scrollMode (line 12731) | get scrollMode() { method scrollMode (line 12734) | set scrollMode(mode) { method _updateScrollMode (line 12752) | _updateScrollMode(pageNumber = null) { method spreadMode (line 12773) | get spreadMode() { method spreadMode (line 12776) | set spreadMode(mode) { method _updateSpreadMode (line 12790) | _updateSpreadMode(pageNumber = null) { method _getPageAdvance (line 12831) | _getPageAdvance(currentPageNumber, previous = false) { method nextPage (line 12933) | nextPage() { method previousPage (line 12943) | previousPage() { method updateScale (line 12952) | updateScale({ method increaseScale (line 12982) | increaseScale(options = {}) { method decreaseScale (line 12988) | decreaseScale(options = {}) { method #updateContainerHeightCss (line 12994) | #updateContainerHeightCss(height = this.container.clientHeight) { method #resizeObserverCallback (line 13000) | #resizeObserverCallback(entries) { method containerTopLeft (line 13009) | get containerTopLeft() { method #cleanupTimeouts (line 13012) | #cleanupTimeouts() { method #cleanupSwitchAnnotationEditorMode (line 13022) | #cleanupSwitchAnnotationEditorMode() { method #preloadEditingData (line 13030) | #preloadEditingData(mode) { method annotationEditorMode (line 13040) | get annotationEditorMode() { method annotationEditorMode (line 13043) | set annotationEditorMode({ method refresh (line 13105) | refresh(noUpdate = false, updateArgs = Object.create(null)) { class SecondaryToolbar (line 13122) | class SecondaryToolbar { method constructor (line 13124) | constructor(options, eventBus) { method isOpen (line 13240) | get isOpen() { method setPageNumber (line 13243) | setPageNumber(pageNumber) { method setPagesCount (line 13247) | setPagesCount(pagesCount) { method reset (line 13251) | reset() { method #updateUIState (line 13266) | #updateUIState() { method #bindListeners (line 13278) | #bindListeners(buttons) { method #cursorToolChanged (line 13317) | #cursorToolChanged({ method #scrollModeChanged (line 13330) | #scrollModeChanged({ method #spreadModeChanged (line 13356) | #spreadModeChanged({ method open (line 13368) | open() { method close (line 13379) | close() { method toggle (line 13390) | toggle() { constant DEFAULT_HEIGHT_IN_PAGE (line 13401) | const DEFAULT_HEIGHT_IN_PAGE = 40; class SignatureManager (line 13402) | class SignatureManager { method constructor (line 13440) | constructor({ method #initTabButtons (line 13535) | #initTabButtons(typeButton, drawButton, imageButton, panels) { method #resetCommon (line 13568) | #resetCommon() { method #resetTab (line 13575) | #resetTab(name) { method #initTab (line 13596) | #initTab(name) { method #disableButtons (line 13628) | #disableButtons(value) { method #initTypeTab (line 13631) | #initTypeTab(reset) { method #initDrawTab (line 13657) | #initDrawTab(reset) { method #initImageTab (line 13782) | #initImageTab(reset) { method #extractSignature (line 13856) | async #extractSignature(file) { method #getOutlineForType (line 13890) | #getOutlineForType() { method #getOutlineForDraw (line 13893) | #getOutlineForDraw() { method #reportTelemetry (line 13900) | #reportTelemetry(data) { method #addToolbarButton (line 13909) | #addToolbarButton(signatureData, uuid, description) { method #signaturesChanged (line 14008) | async #signaturesChanged() { method getSignature (line 14016) | getSignature(params) { method loadSignatures (line 14019) | async loadSignatures(reload = false) { method renderEditButton (line 14048) | async renderEditButton(editor) { method open (line 14063) | async open({ method #cancel (line 14082) | #cancel() { method #finish (line 14085) | #finish() { method #close (line 14088) | #close() { method #add (line 14105) | async #add() { method destroy (line 14168) | destroy() { class EditDescriptionDialog (line 14173) | class EditDescriptionDialog { method constructor (line 14181) | constructor({ method open (line 14218) | async open(editor) { method #update (line 14238) | async #update() { method #cancel (line 14248) | #cancel() { method #finish (line 14257) | #finish() { method #close (line 14260) | #close() { class Toolbar (line 14271) | class Toolbar { method constructor (line 14274) | constructor(options, eventBus, toolbarDensity = 0) { method #updateToolbarDensity (line 14363) | #updateToolbarDensity({ method setPageNumber (line 14377) | setPageNumber(pageNumber, pageLabel) { method setPagesCount (line 14382) | setPagesCount(pagesCount, hasPageLabels) { method setPageScale (line 14387) | setPageScale(pageScaleValue, pageScale) { method reset (line 14392) | reset() { method #bindListeners (line 14406) | #bindListeners(buttons) { method #editorModeChanged (line 14493) | #editorModeChanged({ method #updateUIState (line 14520) | #updateUIState(resetNumPages = false) { method updateLoadingIndicatorState (line 14570) | updateLoadingIndicatorState(loading = false) { constant DEFAULT_VIEW_HISTORY_CACHE_SIZE (line 14579) | const DEFAULT_VIEW_HISTORY_CACHE_SIZE = 20; class ViewHistory (line 14580) | class ViewHistory { method constructor (line 14581) | constructor(fingerprint, cacheSize = DEFAULT_VIEW_HISTORY_CACHE_SIZE) { method _writeToStorage (line 14610) | async _writeToStorage() { method _readFromStorage (line 14614) | async _readFromStorage() { method set (line 14617) | async set(name, val) { method setMultiple (line 14622) | async setMultiple(properties) { method get (line 14629) | async get(name, defaultValue) { method getMultiple (line 14634) | async getMultiple(properties) { constant FORCE_PAGES_LOADED_TIMEOUT (line 14680) | const FORCE_PAGES_LOADED_TIMEOUT = 10000; method initialize (line 14746) | async initialize(appConfig) { method _parseHashParams (line 14780) | async _parseHashParams() { method _initializeViewerComponents (line 14865) | async _initializeViewerComponents() { method run (line 15063) | async run(config) { method externalServices (line 15135) | get externalServices() { method initialized (line 15138) | get initialized() { method initializedPromise (line 15141) | get initializedPromise() { method updateZoom (line 15144) | updateZoom(steps, scaleFactor, origin) { method zoomIn (line 15155) | zoomIn() { method zoomOut (line 15158) | zoomOut() { method zoomReset (line 15161) | zoomReset() { method touchPinchCallback (line 15167) | touchPinchCallback(origin, prevDistance, distance) { method touchPinchEndCallback (line 15177) | touchPinchEndCallback() { method pagesCount (line 15181) | get pagesCount() { method page (line 15184) | get page() { method page (line 15187) | set page(val) { method supportsPrinting (line 15190) | get supportsPrinting() { method supportsFullscreen (line 15193) | get supportsFullscreen() { method supportsPinchToZoom (line 15196) | get supportsPinchToZoom() { method supportsIntegratedFind (line 15199) | get supportsIntegratedFind() { method loadingBar (line 15202) | get loadingBar() { method supportsMouseWheelZoomCtrlKey (line 15207) | get supportsMouseWheelZoomCtrlKey() { method supportsMouseWheelZoomMetaKey (line 15210) | get supportsMouseWheelZoomMetaKey() { method supportsCaretBrowsingMode (line 15213) | get supportsCaretBrowsingMode() { method moveCaret (line 15216) | moveCaret(isUp, select) { method setTitleUsingUrl (line 15220) | setTitleUsingUrl(url = "", downloadUrl = null) { method setTitle (line 15237) | setTitle(title = this._title) { method _docFilename (line 15245) | get _docFilename() { method _hideViewBookmark (line 15248) | _hideViewBookmark() { method close (line 15257) | async close() { method open (line 15303) | async open(args) { method download (line 15351) | async download() { method save (line 15358) | async save() { method downloadOrSave (line 15384) | async downloadOrSave() { method _documentError (line 15392) | async _documentError(key, moreInfo = null) { method _otherError (line 15401) | async _otherError(key, moreInfo = null) { method progress (line 15420) | progress(level) { method load (line 15430) | load(pdfDocument) { method _scriptingDocProperties (line 15584) | async _scriptingDocProperties(pdfDocument) { method _initializeAutoPrint (line 15616) | async _initializeAutoPrint(pdfDocument, openActionPromise) { method _initializeMetadata (line 15643) | async _initializeMetadata(pdfDocument) { method _initializePageLabels (line 15686) | async _initializePageLabels(pdfDocument) { method _initializePdfHistory (line 15720) | _initializePdfHistory({ method _initializeAnnotationStorageCallbacks (line 15745) | _initializeAnnotationStorageCallbacks(pdfDocument) { method setInitialView (line 15765) | setInitialView(storedHash, { method _cleanup (line 15802) | _cleanup() { method forceRendering (line 15810) | forceRendering() { method beforePrint (line 15815) | beforePrint() { method afterPrint (line 15850) | afterPrint() { method rotatePages (line 15865) | rotatePages(delta) { method requestPresentationMode (line 15868) | requestPresentationMode() { method triggerPrinting (line 15871) | triggerPrinting() { method bindEvents (line 15876) | bindEvents() { method bindWindowEvents (line 15933) | bindWindowEvents() { method unbindEvents (line 16052) | unbindEvents() { method unbindWindowEvents (line 16056) | unbindWindowEvents() { method testingClose (line 16061) | async testingClose() { method _accumulateTicks (line 16069) | _accumulateTicks(ticks, prop) { method _accumulateFactor (line 16078) | _accumulateFactor(previousScale, factor, prop) { method _unblockDocumentLoadEvent (line 16089) | _unblockDocumentLoadEvent() { method scriptingReady (line 16093) | get scriptingReady() { function onPageRender (line 16135) | function onPageRender({ function onPageRendered (line 16142) | function onPageRendered({ function onPageMode (line 16161) | function onPageMode({ function onNamedAction (line 16188) | function onNamedAction(evt) { function onSidebarViewChanged (line 16206) | function onSidebarViewChanged({ function onUpdateViewarea (line 16214) | function onUpdateViewarea({ function onViewerModesChanged (line 16230) | function onViewerModesChanged(name, evt) { function onResize (line 16235) | function onResize() { function onHashchange (line 16253) | function onHashchange(evt) { function onPageNumberChanged (line 16264) | function onPageNumberChanged(evt) { function onImageAltTextSettings (line 16275) | function onImageAltTextSettings() { function onFindFromUrlHash (line 16281) | function onFindFromUrlHash(evt) { function onUpdateFindMatchesCount (line 16293) | function onUpdateFindMatchesCount({ function onUpdateFindControlState (line 16302) | function onUpdateFindControlState({ function onScaleChanging (line 16321) | function onScaleChanging(evt) { function onRotationChanging (line 16325) | function onRotationChanging(evt) { function onPageChanging (line 16332) | function onPageChanging({ function onWheel (line 16344) | function onWheel(evt) { function closeSecondaryToolbar (line 16380) | function closeSecondaryToolbar({ function closeEditorUndoBar (line 16394) | function closeEditorUndoBar(evt) { function onClick (line 16402) | function onClick(evt) { function onKeyUp (line 16406) | function onKeyUp(evt) { function onKeyDown (line 16411) | function onKeyDown(evt) { function beforeUnload (line 16688) | function beforeUnload(evt) { function getViewerConfiguration (line 16710) | function getViewerConfiguration() { function webViewerLoad (line 16907) | function webViewerLoad() { FILE: cookbook/static/pdfjs/web/wasm/openjpeg_nowasm_fallback.js function locateFile (line 9) | function locateFile(path){if(Module["locateFile"]){return Module["locate... function c (line 11) | function c(d){d.set=function(a,b){this[a]=b};d.get=function(a){return th... function l (line 11) | function l(m,n,o){var g,h,a=0,i=n,j=o.length,k=n+(j*3>>2)-(o[j-2]=="=")-... function p (line 11) | function p(q){l(e,1024,"Y2Fubm90IGFsbG9jYXRlIG9wal90Y2Rfc2VnX2RhdGFfY2h1... function v (line 11) | function v(w){return s[w]} function x (line 11) | function x(w,y){s[w]=y} function z (line 11) | function z(){return u[0]} function A (line 11) | function A(y){u[0]=y} function B (line 11) | function B(C,y,D){C=C>>>0;D=D>>>0;if(C+D>e.length)throw"trap: invalid me... function E (line 11) | function E(C,F,D){e.copyWithin(C,F,F+D)} function G (line 11) | function G(){throw new Error("abort")} function Da (line 11) | function Da(q){var H=new ArrayBuffer(16908288);var I=new Int8Array(H);va... function updateMemoryViews (line 23) | function updateMemoryViews(){var b=wasmMemory.buffer;Module["HEAP8"]=HEA... function preRun (line 23) | function preRun(){if(Module["preRun"]){if(typeof Module["preRun"]=="func... function initRuntime (line 23) | function initRuntime(){runtimeInitialized=true;wasmExports["t"]()} function postRun (line 23) | function postRun(){if(Module["postRun"]){if(typeof Module["postRun"]=="f... function addRunDependency (line 23) | function addRunDependency(id){runDependencies++;Module["monitorRunDepend... function removeRunDependency (line 23) | function removeRunDependency(id){runDependencies--;Module["monitorRunDep... function abort (line 23) | function abort(what){Module["onAbort"]?.(what);what="Aborted("+what+")";... function findWasmBinary (line 23) | function findWasmBinary(){if(Module["locateFile"]){return locateFile("op... function getBinarySync (line 23) | function getBinarySync(file){if(file==wasmBinaryFile&&wasmBinary){return... function instantiateSync (line 23) | function instantiateSync(file,info){var module;var binary=getBinarySync(... function getWasmImports (line 23) | function getWasmImports(){return{a:wasmImports}} function createWasm (line 23) | function createWasm(){function receiveInstance(instance,module){wasmExpo... class ExitStatus (line 23) | class ExitStatus{name="ExitStatus";constructor(status){this.message=`Pro... method constructor (line 23) | constructor(status){this.message=`Program terminated with exit(${statu... function _copy_pixels_1 (line 23) | function _copy_pixels_1(compG_ptr,nb_pixels){compG_ptr>>=2;const imageDa... function _copy_pixels_3 (line 23) | function _copy_pixels_3(compR_ptr,compG_ptr,compB_ptr,nb_pixels){compR_p... function _copy_pixels_4 (line 23) | function _copy_pixels_4(compR_ptr,compG_ptr,compB_ptr,compA_ptr,nb_pixel... function _fd_seek (line 23) | function _fd_seek(fd,offset_low,offset_high,whence,newOffset){var offset... function _gray_to_rgba (line 23) | function _gray_to_rgba(compG_ptr,nb_pixels){compG_ptr>>=2;const imageDat... function _graya_to_rgba (line 23) | function _graya_to_rgba(compG_ptr,compA_ptr,nb_pixels){compG_ptr>>=2;com... function _jsPrintWarning (line 23) | function _jsPrintWarning(message_ptr){const message=UTF8ToString(message... function _rgb_to_rgba (line 23) | function _rgb_to_rgba(compR_ptr,compG_ptr,compB_ptr,nb_pixels){compR_ptr... function _storeErrorMessage (line 23) | function _storeErrorMessage(message_ptr){const message=UTF8ToString(mess... function run (line 23) | function run(){if(runDependencies>0){dependenciesFulfilled=run;return}pr... FILE: cookbook/templatetags/custom_tags.py function get_class_name (line 24) | def get_class_name(value): function get_class (line 29) | def get_class(value): function class_name (line 34) | def class_name(value): function delete_url (line 39) | def delete_url(model, pk): function markdown (line 47) | def markdown(value): function recipe_rating (line 78) | def recipe_rating(recipe, user): function recipe_last (line 101) | def recipe_last(recipe, user): function page_help (line 112) | def page_help(page_name): function message_of_the_day (line 134) | def message_of_the_day(request): function is_debug (line 143) | def is_debug(): function markdown_link (line 148) | def markdown_link(): function plugin_dropdown_nav_templates (line 153) | def plugin_dropdown_nav_templates(): function plugin_main_nav_templates (line 162) | def plugin_main_nav_templates(): function bookmarklet (line 171) | def bookmarklet(request): function base_path (line 197) | def base_path(request, path_type): function user_prefs (line 207) | def user_prefs(request): FILE: cookbook/templatetags/theming_tags.py function theme_values (line 12) | def theme_values(request): function get_theming_values (line 16) | def get_theming_values(request): FILE: cookbook/tests/api/test_api_access_token.py function obj_1 (line 15) | def obj_1(u1_s1): function obj_2 (line 20) | def obj_2(u1_s1): function test_list_permission (line 30) | def test_list_permission(arg, request): function test_list_space (line 35) | def test_list_space(obj_1, obj_2, u1_s1, u1_s2, space_2): function test_token_visibility (line 46) | def test_token_visibility(u1_s1, obj_1): function test_update (line 66) | def test_update(arg, request, obj_1): function test_add (line 85) | def test_add(arg, request, u1_s2, u2_s1, recipe_1_s1): function test_delete (line 98) | def test_delete(u1_s1, u1_s2, obj_1): FILE: cookbook/tests/api/test_api_ai_provider.py function obj_1 (line 14) | def obj_1(space_1, a1_s1): function obj_2 (line 19) | def obj_2(space_1, a1_s1): function test_list_permission (line 29) | def test_list_permission(arg, request): function test_list_space (line 34) | def test_list_space(obj_1, obj_2, u1_s1, u1_s2, space_2): function test_update (line 60) | def test_update(arg, request, obj_1): function test_update_global (line 86) | def test_update_global(arg, request, obj_2): function test_add (line 108) | def test_add(arg, request, u1_s2): function test_delete (line 125) | def test_delete(a1_s1, a1_s2, obj_1): function test_delete_global (line 148) | def test_delete_global(a1_s1, s1_s1, obj_2): FILE: cookbook/tests/api/test_api_ai_timeout.py function ai_provider (line 16) | def ai_provider(space_1): function food_1 (line 26) | def food_1(space_1): function recipe_1 (line 31) | def recipe_1(space_1): function ai_space (line 36) | def ai_space(space_1, ai_provider): class TestFoodAiPropertiesTimeout (line 50) | class TestFoodAiPropertiesTimeout: method test_timeout_returns_408 (line 53) | def test_timeout_returns_408(self, mock_completion, ai_space, food_1, ... class TestRecipeAiPropertiesTimeout (line 71) | class TestRecipeAiPropertiesTimeout: method test_timeout_returns_408 (line 74) | def test_timeout_returns_408(self, mock_completion, ai_space, recipe_1... class TestAiStepSortTimeout (line 92) | class TestAiStepSortTimeout: method test_timeout_returns_408 (line 95) | def test_timeout_returns_408(self, mock_completion, ai_space, recipe_1... class TestAiImportTimeout (line 115) | class TestAiImportTimeout: method test_timeout_returns_408 (line 118) | def test_timeout_returns_408(self, mock_completion, ai_space, a1_s1): FILE: cookbook/tests/api/test_api_connector_config.py function obj_1 (line 15) | def obj_1(space_1, u1_s1): function obj_2 (line 21) | def obj_2(space_1, u1_s1): function test_list_permission (line 33) | def test_list_permission(arg, request): function test_list_space (line 42) | def test_list_space(obj_1, obj_2, a1_s1, a1_s2, space_2): function test_update (line 63) | def test_update(arg, request, obj_1): function test_add (line 90) | def test_add(arg, request, a1_s2, obj_1): function test_add_with_supports_description_field_false (line 108) | def test_add_with_supports_description_field_false(a1_s2): function test_delete (line 120) | def test_delete(a1_s1, a1_s2, obj_1): FILE: cookbook/tests/api/test_api_cook_log.py function obj_1 (line 15) | def obj_1(space_1, u1_s1, recipe_1_s1): function obj_2 (line 20) | def obj_2(space_1, u1_s1, recipe_1_s1): function test_list_permission (line 30) | def test_list_permission(arg, request): function test_list_space (line 35) | def test_list_space(obj_1, obj_2, u1_s1, u1_s2, space_2): function test_update (line 55) | def test_update(arg, request, obj_1): function test_add (line 77) | def test_add(arg, request, u1_s2, u2_s1, recipe_1_s1): function test_delete (line 96) | def test_delete(u1_s1, u1_s2, obj_1): FILE: cookbook/tests/api/test_api_food.py function false (line 39) | def false(): function non_exist (line 44) | def non_exist(): function obj_tree_1 (line 49) | def obj_tree_1(request, space_1): function test_list_permission (line 88) | def test_list_permission(arg, request): function test_list_space (line 93) | def test_list_space(obj_1, obj_2, u1_s1, u1_s2, space_2): function test_list_filter (line 108) | def test_list_filter(obj_1, obj_2, u1_s1): function test_update (line 147) | def test_update(arg, request, obj_1): function test_add (line 169) | def test_add(arg, request, u1_s2): function test_add_duplicate (line 186) | def test_add_duplicate(u1_s1, u1_s2, obj_1, obj_3): function test_delete (line 211) | def test_delete(u1_s1, u1_s2, obj_1, obj_tree_1): function test_move (line 239) | def test_move(u1_s1, obj_tree_1, obj_2, obj_3, space_1): function test_move_errors (line 273) | def test_move_errors(u1_s1, obj_tree_1, obj_3, space_1): function test_merge_ingredients (line 304) | def test_merge_ingredients(obj_tree_1, u1_s1, space_1): function test_merge_shopping_entries (line 328) | def test_merge_shopping_entries(obj_tree_1, u1_s1, space_1): function test_merge (line 352) | def test_merge(u1_s1, obj_tree_1, obj_1, obj_3, space_1): function test_merge_errors (line 397) | def test_merge_errors(u1_s1, obj_tree_1, obj_3, space_1): function test_root_filter (line 433) | def test_root_filter(obj_tree_1, obj_2, obj_3, u1_s1): function test_tree_filter (line 458) | def test_tree_filter(obj_tree_1, obj_2, obj_3, u1_s1): function test_inherit (line 493) | def test_inherit(request, obj_tree_1, field, inherit, new_val, u1_s1): function test_reset_inherit_space_fields (line 531) | def test_reset_inherit_space_fields(obj_tree_1, space_1, global_reset, f... function test_reset_inherit_no_food_instances (line 572) | def test_reset_inherit_no_food_instances(obj_tree_1, space_1, field): function test_onhand (line 582) | def test_onhand(obj_1, u1_s1, u2_s1, space_1): FILE: cookbook/tests/api/test_api_food_shopping.py function food (line 16) | def food(request, space_1, u1_s1): function test_shopping_forbidden_methods (line 20) | def test_shopping_forbidden_methods(food, u1_s1): function test_shopping_food_create (line 41) | def test_shopping_food_create(request, arg, food, ids=lambda arg: arg[0]): function test_shopping_food_delete (line 56) | def test_shopping_food_delete(request, arg, food, ids=lambda arg: arg[0]): FILE: cookbook/tests/api/test_api_import_log.py function obj_1 (line 15) | def obj_1(space_1, u1_s1, recipe_1_s1): function obj_2 (line 20) | def obj_2(space_1, u1_s1, recipe_1_s1): function test_list_permission (line 30) | def test_list_permission(arg, request): function test_list_space (line 35) | def test_list_space(obj_1, obj_2, u1_s1, u1_s2, space_2): function test_update (line 55) | def test_update(arg, request, obj_1): function test_delete (line 68) | def test_delete(u1_s1, u1_s2, obj_1): FILE: cookbook/tests/api/test_api_ingredient.py function test_list_permission (line 20) | def test_list_permission(arg, request): function test_list_space (line 25) | def test_list_space(recipe_1_s1, u1_s1, u1_s2, space_2): function test_update (line 48) | def test_update(arg, request, recipe_1_s1): function test_add (line 72) | def test_add(arg, request, u1_s2): function test_delete (line 91) | def test_delete(u1_s1, u1_s2, recipe_1_s1): FILE: cookbook/tests/api/test_api_invitelinke.py function test_list_permission (line 23) | def test_list_permission(arg, request, space_1, g1_s1, u1_s1, a1_s1, ids... function test_update (line 44) | def test_update(arg, request, space_1, u1_s1, a1_s1, ids=lambda arg: arg... function test_add (line 74) | def test_add(arg, request, a1_s1, space_1): function test_delete (line 89) | def test_delete(u1_s1, u1_s2, a1_s1, a2_s1, space_1): function test_invite_link_email_sent_true_when_configured (line 130) | def test_invite_link_email_sent_true_when_configured(a1_s1, space_1, mai... function test_invite_link_email_sent_false_when_not_configured (line 152) | def test_invite_link_email_sent_false_when_not_configured(a1_s1, space_1): function test_invite_link_email_sent_false_on_smtp_failure (line 173) | def test_invite_link_email_sent_false_on_smtp_failure(a1_s1, space_1): function test_invite_link_created_even_when_email_fails (line 196) | def test_invite_link_created_even_when_email_fails(a1_s1, space_1): function test_invite_link_email_failure_is_printed (line 217) | def test_invite_link_email_failure_is_printed(a1_s1, space_1, capsys): function test_invite_link_email_sent_false_when_no_email_provided (line 240) | def test_invite_link_email_sent_false_when_no_email_provided(a1_s1, spac... FILE: cookbook/tests/api/test_api_keyword.py function obj_1 (line 30) | def obj_1(space_1): function obj_1_1 (line 35) | def obj_1_1(obj_1, space_1): function obj_1_1_1 (line 40) | def obj_1_1_1(obj_1_1, space_1): function obj_2 (line 45) | def obj_2(space_1): function obj_3 (line 50) | def obj_3(space_2): function recipe_1_s1 (line 55) | def recipe_1_s1(obj_1, recipe_1_s1, space_1): function recipe_2_s1 (line 60) | def recipe_2_s1(obj_2, recipe_2_s1, space_1): function recipe_3_s2 (line 65) | def recipe_3_s2(u1_s2, obj_3, space_2): function recipe_1_1_s1 (line 70) | def recipe_1_1_s1(u1_s1, obj_1_1, space_1): function test_list_permission (line 80) | def test_list_permission(arg, request): function test_list_space (line 85) | def test_list_space(obj_1, obj_2, u1_s1, u1_s2, space_2): function test_list_filter (line 96) | def test_list_filter(obj_1, obj_2, u1_s1): function test_update (line 128) | def test_update(arg, request, obj_1): function test_add (line 150) | def test_add(arg, request, u1_s2): function test_add_duplicate (line 167) | def test_add_duplicate(u1_s1, u1_s2, obj_1, obj_3): function test_delete (line 192) | def test_delete(u1_s1, u1_s2, obj_1, obj_1_1, obj_1_1_1): function test_move (line 219) | def test_move(u1_s1, obj_1, obj_1_1, obj_1_1_1, obj_2, obj_3, space_1): function test_merge (line 268) | def test_merge( function test_root_filter (line 351) | def test_root_filter(obj_1, obj_1_1, obj_1_1_1, obj_2, obj_3, u1_s1): function test_tree_filter (line 365) | def test_tree_filter(obj_1, obj_1_1, obj_1_1_1, obj_2, obj_3, u1_s1): FILE: cookbook/tests/api/test_api_meal_plan.py function meal_type (line 24) | def meal_type(space_1, u1_s1): function obj_1 (line 31) | def obj_1(space_1, recipe_1_s1, meal_type, u1_s1): function obj_2 (line 41) | def obj_2(space_1, recipe_1_s1, meal_type, u1_s1): function obj_3 (line 51) | def obj_3(space_1, recipe_1_s1, meal_type, u1_s1): function test_list_permission (line 66) | def test_list_permission(arg, request): function test_list_space (line 71) | def test_list_space(obj_1, obj_2, u1_s1, u1_s2, space_2): function test_list_filter (line 86) | def test_list_filter(obj_1, u1_s1): function test_update (line 130) | def test_update(arg, request, obj_1): function test_add (line 146) | def test_add(arg, request, u1_s2, recipe_1_s1, meal_type): function test_delete (line 176) | def test_delete(u1_s1, u1_s2, obj_1): function test_add_with_shopping (line 187) | def test_add_with_shopping(u1_s1, meal_type): function test_ical (line 227) | def test_ical(arg, request, obj_1, obj_3, u1_s1): function test_ical_event (line 235) | def test_ical_event(obj_1, u1_s1): function test_ical_event_timezone_aware (line 255) | def test_ical_event_timezone_aware(space_1, recipe_1_s1, u1_s1): function test_ical_event_minimum_duration (line 283) | def test_ical_event_minimum_duration(space_1, recipe_1_s1, u1_s1): function test_create_date_only_gets_noon_default (line 308) | def test_create_date_only_gets_noon_default(u1_s1, recipe_1_s1, meal_type): function test_token_permissions (line 331) | def test_token_permissions(u1_s1, obj_1): function test_create_date_only_with_meal_type_time (line 355) | def test_create_date_only_with_meal_type_time(u1_s1, recipe_1_s1, space_1): function test_create_explicit_time_preserved (line 383) | def test_create_explicit_time_preserved(u1_s1, recipe_1_s1, space_1): FILE: cookbook/tests/api/test_api_meal_type.py function obj_1 (line 15) | def obj_1(space_1, u1_s1): function obj_2 (line 20) | def obj_2(space_1, u1_s1): function test_list_permission (line 30) | def test_list_permission(arg, request): function test_list_space (line 35) | def test_list_space(obj_1, obj_2, u1_s1, u1_s2, space_2): function test_update (line 55) | def test_update(arg, request, obj_1): function test_add (line 77) | def test_add(arg, request, u1_s2): function test_add_duplicate (line 94) | def test_add_duplicate(u1_s1, u1_s2, obj_1): function test_delete (line 114) | def test_delete(u1_s1, u1_s2, obj_1): FILE: cookbook/tests/api/test_api_property.py function obj_1 (line 14) | def obj_1(space_1, u1_s1): function obj_2 (line 22) | def obj_2(space_1, u1_s1): function test_list_permission (line 35) | def test_list_permission(arg, request): function test_list_space (line 40) | def test_list_space(obj_1, obj_2, u1_s1, u1_s2, space_2): function test_update (line 60) | def test_update(arg, request, obj_1): function test_add (line 76) | def test_add(arg, request, u1_s2, space_1): function test_delete (line 99) | def test_delete(u1_s1, u1_s2, obj_1): FILE: cookbook/tests/api/test_api_property_type.py function obj_1 (line 14) | def obj_1(space_1, u1_s1): function obj_2 (line 19) | def obj_2(space_1, u1_s1): function test_list_permission (line 29) | def test_list_permission(arg, request): function test_list_space (line 34) | def test_list_space(obj_1, obj_2, u1_s1, u1_s2, space_2): function test_update (line 54) | def test_update(arg, request, obj_1): function test_add (line 76) | def test_add(arg, request, u1_s2): function test_add_duplicate (line 93) | def test_add_duplicate(u1_s1, u1_s2, obj_1): function test_delete (line 113) | def test_delete(u1_s1, u1_s2, obj_1): FILE: cookbook/tests/api/test_api_recipe.py function test_list_permission (line 25) | def test_list_permission(arg, request): function test_list_space (line 30) | def test_list_space(recipe_1_s1, u1_s1, u1_s2, space_2): function test_share_permission (line 58) | def test_share_permission(recipe_1_s1, u1_s1, u1_s2, u2_s1, a_u, space_1): function test_share_permission_invalid (line 91) | def test_share_permission_invalid(recipe_1_s1, u1_s2): function test_update (line 112) | def test_update(arg, request, recipe_1_s1): function test_update_share (line 129) | def test_update_share(u1_s1, u2_s1, u1_s2, recipe_1_s1): function test_update_private_recipe (line 145) | def test_update_private_recipe(u1_s1, u2_s1, recipe_1_s1): function test_add (line 167) | def test_add(arg, request, u1_s2): function test_delete (line 188) | def test_delete(u1_s1, u1_s2, u2_s1, recipe_1_s1, recipe_2_s1): function test_food_properties_skipped_on_create (line 209) | def test_food_properties_skipped_on_create(u1_s1, space_1): FILE: cookbook/tests/api/test_api_recipe_book.py function obj_1 (line 15) | def obj_1(space_1, u1_s1): function obj_2 (line 22) | def obj_2(space_1, u1_s1): function test_list_permission (line 34) | def test_list_permission(arg, request): function test_list_space (line 39) | def test_list_space(obj_1, obj_2, u1_s1, u1_s2, space_2): function test_list_filter (line 50) | def test_list_filter(obj_1, obj_2, u1_s1): function test_update (line 78) | def test_update(arg, request, obj_1): function test_add (line 93) | def test_add(arg, request, u1_s2): function test_delete (line 111) | def test_delete(u1_s1, u1_s2, obj_1): FILE: cookbook/tests/api/test_api_recipe_book_entry.py function obj_1 (line 15) | def obj_1(space_1, u1_s1, recipe_1_s1): function obj_2 (line 22) | def obj_2(space_1, u1_s1, recipe_1_s1): function test_list_permission (line 33) | def test_list_permission(arg, request): function test_list_space (line 38) | def test_list_space(obj_1, obj_2, u1_s1, u1_s2, space_2): function test_update (line 58) | def test_update(arg, request, obj_1, recipe_2_s1): function test_add (line 80) | def test_add(arg, request, u1_s2, obj_1, recipe_2_s1): function test_add_duplicate (line 97) | def test_add_duplicate(u1_s1, obj_1): function test_delete (line 106) | def test_delete(u1_s1, u1_s2, obj_1): FILE: cookbook/tests/api/test_api_related_recipe.py function recipe (line 14) | def recipe(request, space_1, u1_s1): function test_get_related_recipes (line 45) | def test_get_related_recipes(request, arg, recipe, related_count, u1_s1,... function test_related_mixed_space (line 58) | def test_related_mixed_space(request, recipe, u1_s2, space_2): FILE: cookbook/tests/api/test_api_share_link.py function test_get_share_link (line 10) | def test_get_share_link(recipe_1_s1, u1_s1, u1_s2, g1_s1, a_u, space_1): FILE: cookbook/tests/api/test_api_shopping_list_entryv2.py function sle (line 18) | def sle(space_1, u1_s1): function sle_2 (line 26) | def sle_2(request): function test_list_permission (line 46) | def test_list_permission(arg, request): function test_list_space (line 51) | def test_list_space(sle, u1_s1, u1_s2, space_2): function test_get_detail (line 64) | def test_get_detail(u1_s1, sle): function test_update (line 78) | def test_update(arg, request, sle): function test_add (line 95) | def test_add(arg, request, sle): function test_delete (line 112) | def test_delete(u1_s1, u1_s2, sle): function test_sharing (line 142) | def test_sharing(request, shared, count, sle_2, sle, u1_s1, space_1): function test_recent (line 183) | def test_recent(sle, u1_s1): FILE: cookbook/tests/api/test_api_shopping_list_recipe.py function obj_1 (line 14) | def obj_1(space_1, u1_s1, recipe_1_s1): function test_list_permission (line 22) | def test_list_permission(arg, request): function test_update (line 28) | def test_update(arg, request, obj_1): function test_add (line 38) | def test_add(arg, request, obj_1, recipe_1_s1): function test_delete (line 48) | def test_delete(u1_s1, u1_s2, obj_1): FILE: cookbook/tests/api/test_api_shopping_recipe.py function user2 (line 23) | def user2(request, u1_s1): function recipe (line 40) | def recipe(request, space_1, u1_s1): function test_shopping_recipe_method (line 65) | def test_shopping_recipe_method(request, arg, recipe, sle_count, u1_s1, ... function test_shopping_recipe_mixed_authors (line 105) | def test_shopping_recipe_mixed_authors(u1_s1, u2_s1, space_1): function test_shopping_with_header_ingredient (line 126) | def test_shopping_with_header_ingredient(u1_s1, recipe): FILE: cookbook/tests/api/test_api_space.py function test_list_permission (line 23) | def test_list_permission(arg, request, space_1, a1_s1): function test_list_multiple (line 33) | def test_list_multiple(u1_s1, space_1, space_2): function test_update (line 58) | def test_update(arg, request, space_1, a1_s1): function test_add (line 77) | def test_add(arg, request, u1_s2): function test_delete (line 83) | def test_delete(u1_s1, u1_s2, a1_s1, space_1): function test_superuser_parameters (line 95) | def test_superuser_parameters(space_1, a1_s1, s1_s1): FILE: cookbook/tests/api/test_api_step.py function test_list_permission (line 20) | def test_list_permission(arg, request): function test_list_space (line 25) | def test_list_space(recipe_1_s1, u1_s1, u1_s2, space_2): function test_update (line 48) | def test_update(arg, request, recipe_1_s1): function test_add (line 72) | def test_add(arg, request, u1_s2): function test_delete (line 91) | def test_delete(u1_s1, u1_s2, recipe_1_s1): FILE: cookbook/tests/api/test_api_storage.py function obj_1 (line 15) | def obj_1(space_1, u1_s1): function obj_2 (line 20) | def obj_2(space_1, u1_s1): function test_list_permission (line 30) | def test_list_permission(arg, request): function test_list_space (line 40) | def test_list_space(obj_1, obj_2, a1_s1, a1_s2, space_2): function test_update (line 60) | def test_update(arg, request, obj_1): function test_add (line 86) | def test_add(arg, request, a1_s2, obj_1): function test_delete (line 104) | def test_delete(a1_s1, a1_s2, obj_1): FILE: cookbook/tests/api/test_api_supermarket.py function obj_1 (line 14) | def obj_1(space_1, u1_s1): function obj_2 (line 19) | def obj_2(space_1, u1_s1): function test_list_permission (line 29) | def test_list_permission(arg, request): function test_list_space (line 34) | def test_list_space(obj_1, obj_2, u1_s1, u1_s2, space_2): function test_list_filter (line 45) | def test_list_filter(obj_1, obj_2, u1_s1): function test_update (line 70) | def test_update(arg, request, obj_1): function test_add (line 92) | def test_add(arg, request, u1_s2): function test_delete (line 110) | def test_delete(u1_s1, u1_s2, obj_1): FILE: cookbook/tests/api/test_api_sync.py function obj_1 (line 15) | def obj_1(space_1, u1_s1): function obj_2 (line 33) | def obj_2(space_1, u1_s1): function test_list_permission (line 56) | def test_list_permission(arg, request): function test_list_space (line 61) | def test_list_space(obj_1, obj_2, a1_s1, a1_s2, space_2): function test_update (line 81) | def test_update(arg, request, obj_1): function test_add (line 98) | def test_add(arg, request, a1_s2, obj_1): function test_delete (line 116) | def test_delete(a1_s1, a1_s2, obj_1): FILE: cookbook/tests/api/test_api_sync_log.py function obj_1 (line 14) | def obj_1(space_1, u1_s1): function obj_2 (line 21) | def obj_2(space_1, u1_s1): function test_list_permission (line 33) | def test_list_permission(arg, request): function test_list_space (line 38) | def test_list_space(obj_1, obj_2, a1_s1, a1_s2, space_2): function test_update (line 58) | def test_update(arg, request, obj_1): function test_add (line 77) | def test_add(arg, request, a1_s2, obj_1): function test_delete (line 87) | def test_delete(a1_s1, a1_s2, obj_1): FILE: cookbook/tests/api/test_api_unit.py function random_food (line 16) | def random_food(space_1, u1_s1): function obj_1 (line 21) | def obj_1(space_1): function obj_2 (line 26) | def obj_2(space_1): function obj_3 (line 31) | def obj_3(space_2): function ing_1_s1 (line 36) | def ing_1_s1(obj_1, space_1, u1_s1): function ing_2_s1 (line 41) | def ing_2_s1(obj_2, space_1, u1_s1): function ing_3_s2 (line 46) | def ing_3_s2(obj_3, space_2, u2_s2): function sle_1_s1 (line 51) | def sle_1_s1(obj_1, u1_s1, space_1): function sle_2_s1 (line 57) | def sle_2_s1(obj_2, u1_s1, space_1): function sle_3_s2 (line 62) | def sle_3_s2(obj_3, u2_s2, space_2): function test_list_permission (line 73) | def test_list_permission(arg, request): function test_list_space (line 78) | def test_list_space(obj_1, obj_2, u1_s1, u1_s2, space_2): function test_list_filter (line 89) | def test_list_filter(obj_1, obj_2, u1_s1): function test_update (line 115) | def test_update(arg, request, obj_1): function test_add (line 137) | def test_add(arg, request, u1_s2): function test_add_duplicate (line 154) | def test_add_duplicate(u1_s1, u1_s2, obj_1): function test_delete (line 174) | def test_delete(u1_s1, u1_s2, obj_1): function test_merge (line 195) | def test_merge( FILE: cookbook/tests/api/test_api_unit_conversion.py function obj_1 (line 16) | def obj_1(space_1, u1_s1): function obj_2 (line 28) | def obj_2(space_1, u1_s1): function test_list_permission (line 45) | def test_list_permission(arg, request): function test_list_space (line 50) | def test_list_space(obj_1, obj_2, u1_s1, u1_s2, space_2): function test_update (line 70) | def test_update(arg, request, obj_1): function test_add (line 86) | def test_add(arg, request, u1_s2, space_1, u1_s1): function test_add_duplicate (line 121) | def test_add_duplicate(u1_s1, u1_s2, obj_1): function test_delete (line 165) | def test_delete(u1_s1, u1_s2, obj_1): FILE: cookbook/tests/api/test_api_user.py function test_forbidden_methods (line 13) | def test_forbidden_methods(u1_s1): function test_list (line 29) | def test_list(arg, request): function test_list_filter (line 34) | def test_list_filter(u1_s1, u2_s1, u1_s2, u2_s2): function test_list_space (line 50) | def test_list_space(u1_s1, u2_s1, u1_s2, space_2): function test_user_retrieve (line 71) | def test_user_retrieve(arg, request, u1_s1): function test_user_update (line 79) | def test_user_update(u1_s1, u2_s1, u1_s2): FILE: cookbook/tests/api/test_api_userpreference.py function test_add (line 14) | def test_add(u1_s1, u2_s1): function test_preference_list (line 28) | def test_preference_list(u1_s1, u2_s1, u1_s2): function test_preference_retrieve (line 43) | def test_preference_retrieve(arg, request, u1_s1): function test_preference_update (line 52) | def test_preference_update(u1_s1, u2_s1): function test_preference_delete (line 94) | def test_preference_delete(u1_s1, u2_s1): function test_default_inherit_fields (line 114) | def test_default_inherit_fields(u1_s1, u1_s2, space_1, space_2): FILE: cookbook/tests/api/test_api_userspace.py function test_list_permission (line 21) | def test_list_permission(arg, request, space_1, g1_s1, u1_s1, a1_s1, a2_... function test_list_all_personal (line 32) | def test_list_all_personal(space_2, u1_s1): function test_update (line 53) | def test_update(arg, request, space_1, u1_s1, a1_s1): function test_add (line 81) | def test_add(arg, request, u1_s1, space_1): function test_delete_user (line 91) | def test_delete_user(u1_s1, u2_s1, u1_s2, a1_s1, space_1): function test_delete_admin (line 120) | def test_delete_admin(u1_s1, u2_s1, u1_s2, a1_s1, space_1): FILE: cookbook/tests/api/test_api_view_log.py function obj_1 (line 15) | def obj_1(space_1, u1_s1, recipe_1_s1): function obj_2 (line 20) | def obj_2(space_1, u1_s1, recipe_1_s1): function test_list_permission (line 30) | def test_list_permission(arg, request): function test_list_space (line 35) | def test_list_space(obj_1, obj_2, u1_s1, u1_s2, space_2): function test_update (line 56) | def test_update(arg, request, obj_1): function test_add (line 75) | def test_add(arg, request, u1_s2, u2_s1, recipe_1_s1): function test_delete (line 94) | def test_delete(u1_s1, u1_s2, obj_1): FILE: cookbook/tests/conftest.py function pytest_fixture_setup (line 27) | def pytest_fixture_setup(fixturedef, request): function pytest_sessionfinish (line 35) | def pytest_sessionfinish(session, exitstatus): function enable_db_access_for_all_tests (line 42) | def enable_db_access_for_all_tests(db): function get_random_recipe (line 48) | def get_random_recipe(space_1, u1_s1): function get_random_json_recipe (line 95) | def get_random_json_recipe(): function validate_recipe (line 116) | def validate_recipe(expected, recipe): function dict_compare (line 151) | def dict_compare(d1, d2, details=False): function transpose (line 168) | def transpose(text, number=2): function recipe_1_s1 (line 193) | def recipe_1_s1(space_1, u1_s1): function recipe_2_s1 (line 198) | def recipe_2_s1(space_1, u1_s1): function ext_recipe_1_s1 (line 203) | def ext_recipe_1_s1(space_1, u1_s1): function get_random_food (line 211) | def get_random_food(space_1, u1_s1): function get_random_unit (line 215) | def get_random_unit(space_1, u1_s1): function create_user (line 222) | def create_user(client, space, **kwargs): function a_u (line 233) | def a_u(client): function ng1_s1 (line 238) | def ng1_s1(client, space_1): function ng1_s2 (line 243) | def ng1_s2(client, space_2): function g1_s1 (line 249) | def g1_s1(client, space_1): function g2_s1 (line 254) | def g2_s1(client, space_1): function g1_s2 (line 259) | def g1_s2(client, space_2): function g2_s2 (line 264) | def g2_s2(client, space_2): function u1_s1 (line 270) | def u1_s1(client, space_1): function u2_s1 (line 275) | def u2_s1(client, space_1): function u1_s2 (line 280) | def u1_s2(client, space_2): function u2_s2 (line 285) | def u2_s2(client, space_2): function a1_s1 (line 291) | def a1_s1(client, space_1): function a2_s1 (line 296) | def a2_s1(client, space_1): function a1_s2 (line 301) | def a1_s2(client, space_2): function a2_s2 (line 306) | def a2_s2(client, space_2): function s1_s1 (line 310) | def s1_s1(client, space_1): FILE: cookbook/tests/factories/__init__.py function enable_db_access_for_all_tests (line 19) | def enable_db_access_for_all_tests(db): function pytest_fixture_setup (line 24) | def pytest_fixture_setup(fixturedef, request): class SpaceFactory (line 33) | class SpaceFactory(factory.django.DjangoModelFactory): method _create (line 38) | def _create(cls, model_class, **kwargs): class Meta (line 42) | class Meta: class UserFactory (line 47) | class UserFactory(factory.django.DjangoModelFactory): method groups (line 58) | def groups(self, create, extracted, **kwargs): method userpreference (line 68) | def userpreference(self, create, extracted, **kwargs): class Meta (line 77) | class Meta: class SupermarketCategoryFactory (line 83) | class SupermarketCategoryFactory(factory.django.DjangoModelFactory): class Meta (line 89) | class Meta: class FoodFactory (line 95) | class FoodFactory(factory.django.DjangoModelFactory): method users_onhand (line 117) | def users_onhand(self, create, extracted, **kwargs): class Params (line 125) | class Params: class Meta (line 129) | class Meta: class RecipeBookFactory (line 135) | class RecipeBookFactory(factory.django.DjangoModelFactory): class Meta (line 146) | class Meta: class RecipeBookEntryFactory (line 152) | class RecipeBookEntryFactory(factory.django.DjangoModelFactory): class Meta (line 158) | class Meta: class UnitFactory (line 164) | class UnitFactory(factory.django.DjangoModelFactory): class Meta (line 171) | class Meta: class KeywordFactory (line 177) | class KeywordFactory(factory.django.DjangoModelFactory): class Params (line 186) | class Params: class Meta (line 189) | class Meta: class IngredientFactory (line 196) | class IngredientFactory(factory.django.DjangoModelFactory): class Meta (line 208) | class Meta: class MealTypeFactory (line 213) | class MealTypeFactory(factory.django.DjangoModelFactory): class Meta (line 223) | class Meta: class MealPlanFactory (line 228) | class MealPlanFactory(factory.django.DjangoModelFactory): class Params (line 247) | class Params: class Meta (line 250) | class Meta: class ShoppingListRecipeFactory (line 255) | class ShoppingListRecipeFactory(factory.django.DjangoModelFactory): class Params (line 268) | class Params: class Meta (line 271) | class Meta: class ShoppingListEntryFactory (line 276) | class ShoppingListEntryFactory(factory.django.DjangoModelFactory): method _create (line 303) | def _create(cls, target_class, *args, **kwargs): class Params (line 312) | class Params: class Meta (line 315) | class Meta: class StepFactory (line 320) | class StepFactory(factory.django.DjangoModelFactory): method step_recipe (line 338) | def step_recipe(self, create, extracted, **kwargs): method ingredients (line 347) | def ingredients(self, create, extracted, **kwargs): class Meta (line 371) | class Meta: class RecipeFactory (line 376) | class RecipeFactory(factory.django.DjangoModelFactory): method _create (line 401) | def _create(cls, target_class, *args, **kwargs): method keywords (line 411) | def keywords(self, create, extracted, **kwargs): method steps (line 425) | def steps(self, create, extracted, **kwargs): class Meta (line 449) | class Meta: class CookLogFactory (line 454) | class CookLogFactory(factory.django.DjangoModelFactory): method _create (line 467) | def _create(cls, target_class, *args, **kwargs): class Meta (line 475) | class Meta: class ViewLogFactory (line 480) | class ViewLogFactory(factory.django.DjangoModelFactory): method _create (line 492) | def _create(cls, target_class, *args, **kwargs): class Meta (line 500) | class Meta: FILE: cookbook/tests/other/test_automations.py function test_food_automation (line 22) | def test_food_automation(u1_s1, arg): function test_keyword_automation (line 42) | def test_keyword_automation(u1_s1, arg): function test_unit_automation (line 62) | def test_unit_automation(u1_s1, arg): function test_never_unit_automation (line 84) | def test_never_unit_automation(u1_s1, arg): function test_regex_automation (line 112) | def test_regex_automation(u1_s1, arg, source): function test_transpose_automation (line 139) | def test_transpose_automation(u1_s1, arg): function test_url_import_regex_replace (line 152) | def test_url_import_regex_replace(u1_s1): FILE: cookbook/tests/other/test_connector_manager.py function obj_1 (line 16) | def obj_1(space_1, u1_s1): function recipe_with_ingredients (line 22) | def recipe_with_ingredients(space_1, u1_s1): function test_run_connectors (line 39) | async def test_run_connectors(space_1, u1_s1, obj_1) -> None: function test_add_ingredients_triggers_connector (line 51) | def test_add_ingredients_triggers_connector(mock_add_work, space_1, u1_s... FILE: cookbook/tests/other/test_cooklang_integration.py function request_generator (line 13) | def request_generator(u1_s1): function parser_assertions (line 22) | def parser_assertions(expected_metadata, expected_ingredients, expected_... function test_cooklang_parser (line 61) | def test_cooklang_parser(): function test_greater_greater_metadata_parser (line 93) | def test_greater_greater_metadata_parser(): function test_cooklang_integration (line 155) | def test_cooklang_integration(u1_s1): FILE: cookbook/tests/other/test_food_property.py function test_food_property (line 12) | def test_food_property(space_1, space_2, u1_s1): FILE: cookbook/tests/other/test_ingredient_editor_performance.py function performance_test_data (line 20) | def performance_test_data(space_1, u1_s1): function test_ingredient_api_query_count (line 68) | def test_ingredient_api_query_count(performance_test_data, u1_s1): FILE: cookbook/tests/other/test_ingredient_parser.py function test_ingredient_parser (line 13) | def test_ingredient_parser(arg, u1_s1): FILE: cookbook/tests/other/test_local_provider.py class LocalProviderTest (line 6) | class LocalProviderTest(TestCase): method test_is_path_allowed (line 9) | def test_is_path_allowed(self): method test_get_file_restriction (line 18) | def test_get_file_restriction(self): method test_path_prefix_attack (line 25) | def test_path_prefix_attack(self): FILE: cookbook/tests/other/test_makenow_filter.py function recipes (line 21) | def recipes(space_1): function makenow_recipe (line 26) | def makenow_recipe(request, space_1): function user1 (line 36) | def user1(u1_s1, u2_s1, space_1): function test_makenow_onhand (line 45) | def test_makenow_onhand(recipes, makenow_recipe, user1, space_1): function test_makenow_ignoreshopping (line 55) | def test_makenow_ignoreshopping(recipes, makenow_recipe, user1, space_1): function test_makenow_substitute (line 72) | def test_makenow_substitute(recipes, makenow_recipe, user1, space_1): function test_makenow_child_substitute (line 90) | def test_makenow_child_substitute(recipes, makenow_recipe, user1, space_1): function test_makenow_sibling_substitute (line 110) | def test_makenow_sibling_substitute(recipes, makenow_recipe, user1, spac... FILE: cookbook/tests/other/test_nested_serializer.py function test_unnested_serializer__single (line 21) | def test_unnested_serializer__single(arg, recipe_1_s1, food_1, u1_s1): function test_nested_serializer_many (line 31) | def test_nested_serializer_many(recipe_1_s1, food_1, food_2, keyword_1, ... FILE: cookbook/tests/other/test_permission_helper.py function test_has_group_permission (line 10) | def test_has_group_permission(u1_s1, a_u, space_2): function test_is_owner (line 38) | def test_is_owner(u1_s1, u2_s1, u1_s2, a_u, space_1, recipe_1_s1): function test_is_space_owner (line 62) | def test_is_space_owner(u1_s1, u2_s1, space_1, space_2): function test_switch_user_active_space (line 80) | def test_switch_user_active_space(u1_s1, u1_s2, space_1, space_2): FILE: cookbook/tests/other/test_recipe_full_text_search.py function accent (line 30) | def accent(): function unaccent (line 35) | def unaccent(): function user1 (line 40) | def user1(request, space_1, u1_s1, unaccent): function recipes (line 96) | def recipes(space_1): function found_recipe (line 101) | def found_recipe(request, space_1, accent, unaccent, u1_s1, u2_s1): function test_search_or_and_not (line 214) | def test_search_or_and_not(found_recipe, param_type, operator, recipes, ... function test_search_units (line 257) | def test_search_units(found_recipe, recipes, u1_s1, space_1): function test_fuzzy_lookup (line 292) | def test_fuzzy_lookup(found_recipe, recipes, param_type, user1, space_1): function test_search_string (line 329) | def test_search_string(found_recipe, recipes, user1, space_1): function test_search_date (line 351) | def test_search_date(found_recipe, recipes, param_type, result, u1_s1, u... function test_search_count (line 384) | def test_search_count(found_recipe, recipes, param_type, u1_s1, u2_s1, s... function test_search_unrated_includes_null_ratings (line 417) | def test_search_unrated_includes_null_ratings(found_recipe, recipes, u1_... function test_search_rated_excludes_null_ratings (line 457) | def test_search_rated_excludes_null_ratings(found_recipe, recipes, u1_s1... FILE: cookbook/tests/other/test_schemas.py function has_choice_field (line 11) | def has_choice_field(model): function is_list_function (line 18) | def is_list_function(callback): function enumerate_urlpatterns (line 25) | def enumerate_urlpatterns(urlpatterns, base_url=''): function test_pagination_exists (line 57) | def test_pagination_exists(api): function test_autoschema_exists (line 65) | def test_autoschema_exists(api): FILE: cookbook/tests/other/test_social_auth.py function social_signup_space (line 11) | def social_signup_space(): function new_social_user (line 17) | def new_social_user(): function signup_request (line 22) | def signup_request(): function test_social_default_access_adds_user_to_existing_space (line 27) | def test_social_default_access_adds_user_to_existing_space( function test_social_default_access_disabled_does_nothing (line 47) | def test_social_default_access_disabled_does_nothing( function test_social_default_access_uses_first_space (line 60) | def test_social_default_access_uses_first_space( function test_social_default_access_no_space_exists (line 79) | def test_social_default_access_no_space_exists( FILE: cookbook/tests/other/test_theming.py function test_theming_function (line 10) | def test_theming_function(space_1, u1_s1): FILE: cookbook/tests/other/test_unit_conversion.py function test_base_converter (line 10) | def test_base_converter(space_1): function test_unit_conversions (line 31) | def test_unit_conversions(space_1, space_2, u1_s1): function test_multi_step_conversion (line 192) | def test_multi_step_conversion(space_1, u1_s1): function test_multi_step_conversion_no_food (line 248) | def test_multi_step_conversion_no_food(space_1, u1_s1): function test_multi_step_no_cycle (line 299) | def test_multi_step_no_cycle(space_1, u1_s1): function test_conversion_with_zero (line 342) | def test_conversion_with_zero(space_1, space_2, u1_s1): FILE: cookbook/tests/other/test_url_import.py function test_import_permission (line 47) | def test_import_permission(arg, request): function test_recipe_import (line 53) | def test_recipe_import(arg, u1_s1): FILE: cookbook/tests/views/test_views_api.py function test_external_link_permission (line 14) | def test_external_link_permission(arg, request, ext_recipe_1_s1): function test_external_file_permission (line 28) | def test_external_file_permission(arg, request, ext_recipe_1_s1): FILE: cookbook/tests/views/test_views_general.py function test_system (line 88) | def test_system(arg, request, ext_recipe_1_s1): function test_setup (line 99) | def test_setup(arg, request, ext_recipe_1_s1): function test_markdown_doc (line 110) | def test_markdown_doc(arg, request, ext_recipe_1_s1): function test_api_info (line 121) | def test_api_info(arg, request, ext_recipe_1_s1): function test_api_swagger (line 132) | def test_api_swagger(arg, request, ext_recipe_1_s1): FILE: cookbook/urls.py class DefaultRouter (line 15) | class DefaultRouter(routers.DefaultRouter): method extend (line 17) | def extend(self, r): FILE: cookbook/views/api.py class LoggingMixin (line 133) | class LoggingMixin(object): method initial (line 138) | def initial(self, request, *args, **kwargs): class StandardFilterModelViewSet (line 185) | class StandardFilterModelViewSet(viewsets.ModelViewSet): method get_queryset (line 187) | def get_queryset(self): class DefaultPagination (line 215) | class DefaultPagination(PageNumberPagination): method get_paginated_response (line 224) | def get_paginated_response(self, data): method get_paginated_response_schema (line 233) | def get_paginated_response_schema(self, schema): class ExtendedRecipeMixin (line 242) | class ExtendedRecipeMixin(): method annotate_recipe (line 248) | def annotate_recipe(self, queryset=None, request=None, serializer=None... class FuzzyFilterMixin (line 287) | class FuzzyFilterMixin(viewsets.ModelViewSet, ExtendedRecipeMixin): method get_queryset (line 289) | def get_queryset(self): class MergeMixin (line 343) | class MergeMixin(ViewSetMixin): method merge (line 351) | def merge(self, request, pk, target: int): class TreeMixin (line 439) | class TreeMixin(MergeMixin, FuzzyFilterMixin): method get_queryset (line 442) | def get_queryset(self): method move (line 485) | def move(self, request, pk, parent: int): function paginate (line 529) | def paginate(func): class DeleteRelationMixing (line 550) | class DeleteRelationMixing: method collect (line 556) | def collect(obj): method protecting (line 571) | def protecting(self, request, pk): method cascading (line 601) | def cascading(self, request, pk): method nulling (line 633) | def nulling(self, request, pk): class UserViewSet (line 669) | class UserViewSet(LoggingMixin, viewsets.ModelViewSet): method get_queryset (line 676) | def get_queryset(self): class GroupViewSet (line 688) | class GroupViewSet(LoggingMixin, viewsets.ModelViewSet): class SpaceViewSet (line 696) | class SpaceViewSet(LoggingMixin, viewsets.ModelViewSet): method get_queryset (line 703) | def get_queryset(self): method current (line 709) | def current(self, request): class HouseholdViewSet (line 714) | class HouseholdViewSet(LoggingMixin, viewsets.ModelViewSet): method get_queryset (line 720) | def get_queryset(self): class UserSpaceViewSet (line 727) | class UserSpaceViewSet(LoggingMixin, viewsets.ModelViewSet): method destroy (line 734) | def destroy(self, request, *args, **kwargs): method get_queryset (line 740) | def get_queryset(self): method all_personal (line 753) | def all_personal(self, request): class UserPreferenceViewSet (line 764) | class UserPreferenceViewSet(LoggingMixin, viewsets.ModelViewSet): method get_queryset (line 771) | def get_queryset(self): class SearchFieldsViewSet (line 776) | class SearchFieldsViewSet(LoggingMixin, viewsets.ReadOnlyModelViewSet): method get_queryset (line 782) | def get_queryset(self): class SearchPreferenceViewSet (line 787) | class SearchPreferenceViewSet(LoggingMixin, viewsets.ModelViewSet): method get_queryset (line 794) | def get_queryset(self): class AiProviderViewSet (line 799) | class AiProviderViewSet(LoggingMixin, viewsets.ModelViewSet, DeleteRelat... method get_queryset (line 805) | def get_queryset(self): class AiLogViewSet (line 811) | class AiLogViewSet(LoggingMixin, viewsets.ModelViewSet): method get_queryset (line 818) | def get_queryset(self): class StorageViewSet (line 822) | class StorageViewSet(LoggingMixin, viewsets.ModelViewSet, DeleteRelation... method get_queryset (line 829) | def get_queryset(self): class InventoryLocationViewSet (line 833) | class InventoryLocationViewSet(LoggingMixin, viewsets.ModelViewSet, Dele... method get_queryset (line 839) | def get_queryset(self): class InventoryEntryViewSet (line 849) | class InventoryEntryViewSet(LoggingMixin, viewsets.ModelViewSet, DeleteR... method get_queryset (line 855) | def get_queryset(self): class InventoryLogViewSet (line 882) | class InventoryLogViewSet(LoggingMixin, viewsets.ReadOnlyModelViewSet): method get_queryset (line 888) | def get_queryset(self): class SyncViewSet (line 900) | class SyncViewSet(LoggingMixin, viewsets.ModelViewSet, DeleteRelationMix... method get_queryset (line 906) | def get_queryset(self): method query_synced_folder (line 911) | def query_synced_folder(self, request, pk): class SyncLogViewSet (line 925) | class SyncLogViewSet(LoggingMixin, viewsets.ReadOnlyModelViewSet): method get_queryset (line 931) | def get_queryset(self): class RecipeImportViewSet (line 935) | class RecipeImportViewSet(LoggingMixin, viewsets.ModelViewSet): method get_queryset (line 941) | def get_queryset(self): method import_recipe (line 946) | def import_recipe(self, request, pk): method import_all (line 953) | def import_all(self, request): class ConnectorConfigViewSet (line 961) | class ConnectorConfigViewSet(LoggingMixin, viewsets.ModelViewSet, Delete... method get_queryset (line 967) | def get_queryset(self): class SupermarketViewSet (line 971) | class SupermarketViewSet(LoggingMixin, StandardFilterModelViewSet, Delet... method get_queryset (line 977) | def get_queryset(self): class SupermarketCategoryViewSet (line 983) | class SupermarketCategoryViewSet(LoggingMixin, FuzzyFilterMixin, MergeMi... method get_queryset (line 990) | def get_queryset(self): class SupermarketCategoryRelationViewSet (line 995) | class SupermarketCategoryRelationViewSet(LoggingMixin, StandardFilterMod... method get_queryset (line 1001) | def get_queryset(self): class KeywordViewSet (line 1006) | class KeywordViewSet(LoggingMixin, TreeMixin, DeleteRelationMixing): class UnitViewSet (line 1014) | class UnitViewSet(LoggingMixin, MergeMixin, FuzzyFilterMixin, DeleteRela... class FoodInheritFieldViewSet (line 1022) | class FoodInheritFieldViewSet(LoggingMixin, viewsets.ReadOnlyModelViewSet): method get_queryset (line 1028) | def get_queryset(self): class FoodViewSet (line 1034) | class FoodViewSet(LoggingMixin, TreeMixin, DeleteRelationMixing): method get_queryset (line 1041) | def get_queryset(self): method get_serializer_class (line 1063) | def get_serializer_class(self): method shopping (line 1072) | def shopping(self, request, pk): method fdc (line 1092) | def fdc(self, request, pk): method aiproperties (line 1185) | def aiproperties(self, request, pk): method destroy (line 1268) | def destroy(self, *args, **kwargs): method batch_update (line 1276) | def batch_update(self, request): class RecipeBookViewSet (line 1384) | class RecipeBookViewSet(LoggingMixin, StandardFilterModelViewSet, Delete... method get_queryset (line 1390) | def get_queryset(self): class RecipeBookEntryViewSet (line 1408) | class RecipeBookEntryViewSet(LoggingMixin, viewsets.ModelViewSet): method get_queryset (line 1414) | def get_queryset(self): class CalendarRenderer (line 1429) | class CalendarRenderer(BaseRenderer): method render (line 1433) | def render(self, data, accepted_media_type=None, renderer_context=None): class MealPlanViewSet (line 1449) | class MealPlanViewSet(LoggingMixin, viewsets.ModelViewSet): method get_queryset (line 1456) | def get_queryset(self): method get_serializer_class (line 1475) | def get_serializer_class(self): method get_permissions (line 1480) | def get_permissions(self): method ical (line 1493) | def ical(self, request): class AutoPlanViewSet (line 1499) | class AutoPlanViewSet(LoggingMixin, mixins.CreateModelMixin, viewsets.Ge... method create (line 1503) | def create(self, request): class MealTypeViewSet (line 1563) | class MealTypeViewSet(LoggingMixin, viewsets.ModelViewSet, DeleteRelatio... method get_queryset (line 1573) | def get_queryset(self): class IngredientViewSet (line 1583) | class IngredientViewSet(LoggingMixin, viewsets.ModelViewSet): method get_serializer_class (line 1589) | def get_serializer_class(self): method get_queryset (line 1594) | def get_queryset(self): class StepViewSet (line 1625) | class StepViewSet(LoggingMixin, viewsets.ModelViewSet): method get_queryset (line 1631) | def get_queryset(self): class RecipePagination (line 1641) | class RecipePagination(PageNumberPagination): method paginate_queryset (line 1646) | def paginate_queryset(self, queryset, request, view=None): method get_paginated_response (line 1651) | def get_paginated_response(self, data): class RecipeViewSet (line 1715) | class RecipeViewSet(LoggingMixin, viewsets.ModelViewSet, DeleteRelationM... method get_queryset (line 1722) | def get_queryset(self): method list (line 1765) | def list(self, request, *args, **kwargs): method get_serializer_class (line 1770) | def get_serializer_class(self): method create (line 1775) | def create(self, request, *args, **kwargs): method image (line 1788) | def image(self, request, pk): method shopping (line 1836) | def shopping(self, request, pk): method related (line 1866) | def related(self, request, pk): method flat (line 1880) | def flat(self, request): method batch_update (line 1888) | def batch_update(self, request): method aiproperties (line 1970) | def aiproperties(self, request, pk): method delete_external (line 2055) | def delete_external(self, request, pk): class UnitConversionViewSet (line 2073) | class UnitConversionViewSet(LoggingMixin, viewsets.ModelViewSet): method get_queryset (line 2079) | def get_queryset(self): class PropertyTypeViewSet (line 2100) | class PropertyTypeViewSet(LoggingMixin, viewsets.ModelViewSet, DeleteRel... method get_queryset (line 2106) | def get_queryset(self): class PropertyViewSet (line 2114) | class PropertyViewSet(LoggingMixin, viewsets.ModelViewSet): method get_queryset (line 2120) | def get_queryset(self): class ShoppingListRecipeViewSet (line 2127) | class ShoppingListRecipeViewSet(LoggingMixin, viewsets.ModelViewSet): method get_queryset (line 2133) | def get_queryset(self): method bulk_create_entries (line 2148) | def bulk_create_entries(self, request, pk): class ShoppingListViewSet (line 2188) | class ShoppingListViewSet(LoggingMixin, viewsets.ModelViewSet, DeleteRel... method get_queryset (line 2194) | def get_queryset(self): class ShoppingListEntryViewSet (line 2205) | class ShoppingListEntryViewSet(LoggingMixin, viewsets.ModelViewSet): method get_queryset (line 2215) | def get_queryset(self): method bulk (line 2263) | def bulk(self, request): class ViewLogViewSet (line 2319) | class ViewLogViewSet(LoggingMixin, viewsets.ModelViewSet): method get_queryset (line 2325) | def get_queryset(self): class CookLogViewSet (line 2332) | class CookLogViewSet(LoggingMixin, viewsets.ModelViewSet): method get_queryset (line 2338) | def get_queryset(self): class ImportLogViewSet (line 2344) | class ImportLogViewSet(LoggingMixin, viewsets.ModelViewSet): method get_queryset (line 2350) | def get_queryset(self): class ExportLogViewSet (line 2354) | class ExportLogViewSet(LoggingMixin, viewsets.ModelViewSet): method get_queryset (line 2360) | def get_queryset(self): class BookmarkletImportViewSet (line 2364) | class BookmarkletImportViewSet(LoggingMixin, viewsets.ModelViewSet): method get_serializer_class (line 2371) | def get_serializer_class(self): method get_queryset (line 2376) | def get_queryset(self): class UserFileViewSet (line 2380) | class UserFileViewSet(LoggingMixin, StandardFilterModelViewSet, DeleteRe... method get_queryset (line 2387) | def get_queryset(self): class AutomationViewSet (line 2392) | class AutomationViewSet(LoggingMixin, StandardFilterModelViewSet): method list (line 2407) | def list(self, request, *args, **kwargs): method get_queryset (line 2410) | def get_queryset(self): class InviteLinkViewSet (line 2421) | class InviteLinkViewSet(LoggingMixin, StandardFilterModelViewSet): method get_queryset (line 2427) | def get_queryset(self): class CustomFilterViewSet (line 2452) | class CustomFilterViewSet(LoggingMixin, StandardFilterModelViewSet): method get_queryset (line 2458) | def get_queryset(self): class AccessTokenViewSet (line 2468) | class AccessTokenViewSet(LoggingMixin, viewsets.ModelViewSet): method get_queryset (line 2474) | def get_queryset(self): class AuthTokenThrottle (line 2481) | class AuthTokenThrottle(AnonRateThrottle): class RecipeImportThrottle (line 2485) | class RecipeImportThrottle(UserRateThrottle): class CustomAuthToken (line 2489) | class CustomAuthToken(ObtainAuthToken): method post (line 2492) | def post(self, request, *args, **kwargs): class RecipeUrlImportView (line 2514) | class RecipeUrlImportView(APIView): method post (line 2520) | def post(self, request, *args, **kwargs): class AiEndpointThrottle (line 2629) | class AiEndpointThrottle(UserRateThrottle): class AiImportView (line 2633) | class AiImportView(APIView): method post (line 2639) | def post(self, request, *args, **kwargs): class AiStepSortView (line 2793) | class AiStepSortView(APIView): method post (line 2801) | def post(self, request, *args, **kwargs): class AppImportView (line 2881) | class AppImportView(APIView): method post (line 2887) | def post(self, request, *args, **kwargs): class AppExportView (line 2919) | class AppExportView(APIView): method post (line 2924) | def post(self, request, *args, **kwargs): class FdcSearchView (line 2952) | class FdcSearchView(APIView): method get (line 2958) | def get(self, request, format=None): function reset_food_inheritance (line 2993) | def reset_food_inheritance(request): function switch_active_space (line 3009) | def switch_active_space(request, space_id): function download_file (line 3028) | def download_file(request, file_id): function import_files (line 3053) | def import_files(request): class ImportOpenData (line 3082) | class ImportOpenData(APIView): method get (line 3087) | def get(self, request, format=None): method post (line 3095) | def post(self, request, *args, **kwargs): class LocalizationViewSet (line 3123) | class LocalizationViewSet(viewsets.GenericViewSet): method get_queryset (line 3128) | def get_queryset(self): method list (line 3131) | def list(self, request, *args, **kwargs): class ServerSettingsViewSet (line 3139) | class ServerSettingsViewSet(viewsets.GenericViewSet): method get_queryset (line 3144) | def get_queryset(self): method current (line 3149) | def current(self, request, *args, **kwargs): class IngredientParserView (line 3187) | class IngredientParserView(viewsets.GenericViewSet): method post (line 3192) | def post(self, request, *args, **kwargs): function ingredient_from_string (line 3219) | def ingredient_from_string(request): function get_recipe_provider (line 3228) | def get_recipe_provider(recipe): function get_external_file_link (line 3246) | def get_external_file_link(request, pk): function get_recipe_file (line 3261) | def get_recipe_file(request, pk): function sync_all (line 3272) | def sync_all(request): function share_link (line 3312) | def share_link(request, pk): function meal_plans_to_ical (line 3322) | def meal_plans_to_ical(queryset, filename): FILE: cookbook/views/import_export.py function get_integration (line 41) | def get_integration(request, export_type): function export_file (line 95) | def export_file(request, pk): FILE: cookbook/views/telegram.py function setup_bot (line 16) | def setup_bot(request, pk): function remove_bot (line 29) | def remove_bot(request, pk): function hook (line 40) | def hook(request, token): FILE: cookbook/views/views.py function index (line 38) | def index(request, path=None, resource=None): function redirect_recipe_view (line 57) | def redirect_recipe_view(request, pk): function redirect_recipe_share_view (line 63) | def redirect_recipe_share_view(request, pk, share): function search (line 69) | def search(request): function no_groups (line 82) | def no_groups(request): function space_overview (line 87) | def space_overview(request): function switch_space (line 133) | def switch_space(request, space_id): function no_perm (line 139) | def no_perm(request): function recipe_pdf_viewer (line 146) | def recipe_pdf_viewer(request, pk): function system (line 155) | def system(request): function plugin_update (line 278) | def plugin_update(request): function setup (line 294) | def setup(request): function invite_link (line 326) | def invite_link(request, token): function report_share_abuse (line 353) | def report_share_abuse(request, token): function web_manifest (line 364) | def web_manifest(request): function markdown_info (line 453) | def markdown_info(request): function search_info (line 457) | def search_info(request): class Redoc (line 461) | class Redoc(GroupRequiredMixin, SpectacularRedocView): class Swagger (line 466) | class Swagger(GroupRequiredMixin, SpectacularSwaggerView): function offline (line 471) | def offline(request): function service_worker (line 475) | def service_worker(request): function test (line 482) | def test(request): function test2 (line 495) | def test2(request): function tandoor_frontend (line 500) | def tandoor_frontend(request): function get_orphan_files (line 504) | def get_orphan_files(delete_orphans=False): FILE: make_compile_messages.py function detect_languages (line 4) | def detect_languages(folder_path): function call_makemessages (line 12) | def call_makemessages(languages): function call_compilemessages (line 18) | def call_compilemessages(): FILE: recipes/middleware.py class CustomRemoteUser (line 8) | class CustomRemoteUser(RemoteUserMiddleware): function terminal_width (line 21) | def terminal_width(): function SqlPrintingMiddleware (line 45) | def SqlPrintingMiddleware(get_response): FILE: recipes/settings.py function extract_bool (line 26) | def extract_bool(env_key, default): function extract_comma_list (line 30) | def extract_comma_list(env_key, default=None): function setup_database (line 462) | def setup_database(db_url=None, db_options=None, db_engine=None, pg_host... function _discover_languages (line 575) | def _discover_languages(): FILE: recipes/wsgi.py function application (line 21) | def application(environ, start_response): FILE: vue3/src/assets/bookmarklet_v3.js function initBookmarklet (line 19) | function initBookmarklet() { FILE: vue3/src/composables/useDjangoUrls.ts function useDjangoUrls (line 5) | function useDjangoUrls() { FILE: vue3/src/composables/useFileApi.ts function useFileApi (line 11) | function useFileApi() { FILE: vue3/src/composables/useModelEditorFunctions.ts function useModelEditorFunctions (line 13) | function useModelEditorFunctions(modelName: EditorSupportedModels, em... FILE: vue3/src/composables/useNavigation.ts function useNavigation (line 11) | function useNavigation() { FILE: vue3/src/i18n.ts function buildLocaleMap (line 25) | function buildLocaleMap(localeFiles = import.meta.glob('@/locales/*.json... constant LOCALE_MAP (line 38) | const LOCALE_MAP = buildLocaleMap() constant SUPPORT_LOCALES (line 39) | const SUPPORT_LOCALES = Array.from(LOCALE_MAP.keys()) constant LOCALE_ALIASES (line 44) | const LOCALE_ALIASES: Record = { function resolveLocale (line 52) | function resolveLocale(code: string): string | null { function setupI18n (line 64) | function setupI18n() { function loadLocaleMessages (line 101) | async function loadLocaleMessages(i18n: I18n, locale: Locale) { function setLocale (line 149) | function setLocale(i18n: I18n, locale: Locale): void { FILE: vue3/src/openapi/apis/ApiApi.ts type ApiAccessTokenCreateRequest (line 565) | interface ApiAccessTokenCreateRequest { type ApiAccessTokenDestroyRequest (line 569) | interface ApiAccessTokenDestroyRequest { type ApiAccessTokenPartialUpdateRequest (line 573) | interface ApiAccessTokenPartialUpdateRequest { type ApiAccessTokenRetrieveRequest (line 578) | interface ApiAccessTokenRetrieveRequest { type ApiAccessTokenUpdateRequest (line 582) | interface ApiAccessTokenUpdateRequest { type ApiAiImportCreateRequest (line 587) | interface ApiAiImportCreateRequest { type ApiAiLogListRequest (line 594) | interface ApiAiLogListRequest { type ApiAiLogRetrieveRequest (line 599) | interface ApiAiLogRetrieveRequest { type ApiAiProviderCascadingListRequest (line 603) | interface ApiAiProviderCascadingListRequest { type ApiAiProviderCreateRequest (line 610) | interface ApiAiProviderCreateRequest { type ApiAiProviderDestroyRequest (line 614) | interface ApiAiProviderDestroyRequest { type ApiAiProviderListRequest (line 618) | interface ApiAiProviderListRequest { type ApiAiProviderNullingListRequest (line 623) | interface ApiAiProviderNullingListRequest { type ApiAiProviderPartialUpdateRequest (line 630) | interface ApiAiProviderPartialUpdateRequest { type ApiAiProviderProtectingListRequest (line 635) | interface ApiAiProviderProtectingListRequest { type ApiAiProviderRetrieveRequest (line 642) | interface ApiAiProviderRetrieveRequest { type ApiAiProviderUpdateRequest (line 646) | interface ApiAiProviderUpdateRequest { type ApiAiStepSortCreateRequest (line 651) | interface ApiAiStepSortCreateRequest { type ApiAutoPlanCreateRequest (line 656) | interface ApiAutoPlanCreateRequest { type ApiAutomationCreateRequest (line 660) | interface ApiAutomationCreateRequest { type ApiAutomationDestroyRequest (line 664) | interface ApiAutomationDestroyRequest { type ApiAutomationListRequest (line 668) | interface ApiAutomationListRequest { type ApiAutomationPartialUpdateRequest (line 674) | interface ApiAutomationPartialUpdateRequest { type ApiAutomationRetrieveRequest (line 679) | interface ApiAutomationRetrieveRequest { type ApiAutomationUpdateRequest (line 683) | interface ApiAutomationUpdateRequest { type ApiBookmarkletImportCreateRequest (line 688) | interface ApiBookmarkletImportCreateRequest { type ApiBookmarkletImportDestroyRequest (line 692) | interface ApiBookmarkletImportDestroyRequest { type ApiBookmarkletImportListRequest (line 696) | interface ApiBookmarkletImportListRequest { type ApiBookmarkletImportPartialUpdateRequest (line 701) | interface ApiBookmarkletImportPartialUpdateRequest { type ApiBookmarkletImportRetrieveRequest (line 706) | interface ApiBookmarkletImportRetrieveRequest { type ApiBookmarkletImportUpdateRequest (line 710) | interface ApiBookmarkletImportUpdateRequest { type ApiConnectorConfigCascadingListRequest (line 715) | interface ApiConnectorConfigCascadingListRequest { type ApiConnectorConfigCreateRequest (line 722) | interface ApiConnectorConfigCreateRequest { type ApiConnectorConfigDestroyRequest (line 726) | interface ApiConnectorConfigDestroyRequest { type ApiConnectorConfigListRequest (line 730) | interface ApiConnectorConfigListRequest { type ApiConnectorConfigNullingListRequest (line 735) | interface ApiConnectorConfigNullingListRequest { type ApiConnectorConfigPartialUpdateRequest (line 742) | interface ApiConnectorConfigPartialUpdateRequest { type ApiConnectorConfigProtectingListRequest (line 747) | interface ApiConnectorConfigProtectingListRequest { type ApiConnectorConfigRetrieveRequest (line 754) | interface ApiConnectorConfigRetrieveRequest { type ApiConnectorConfigUpdateRequest (line 758) | interface ApiConnectorConfigUpdateRequest { type ApiCookLogCreateRequest (line 763) | interface ApiCookLogCreateRequest { type ApiCookLogDestroyRequest (line 767) | interface ApiCookLogDestroyRequest { type ApiCookLogListRequest (line 771) | interface ApiCookLogListRequest { type ApiCookLogPartialUpdateRequest (line 777) | interface ApiCookLogPartialUpdateRequest { type ApiCookLogRetrieveRequest (line 782) | interface ApiCookLogRetrieveRequest { type ApiCookLogUpdateRequest (line 786) | interface ApiCookLogUpdateRequest { type ApiCustomFilterCreateRequest (line 791) | interface ApiCustomFilterCreateRequest { type ApiCustomFilterDestroyRequest (line 795) | interface ApiCustomFilterDestroyRequest { type ApiCustomFilterListRequest (line 799) | interface ApiCustomFilterListRequest { type ApiCustomFilterPartialUpdateRequest (line 809) | interface ApiCustomFilterPartialUpdateRequest { type ApiCustomFilterRetrieveRequest (line 814) | interface ApiCustomFilterRetrieveRequest { type ApiCustomFilterUpdateRequest (line 818) | interface ApiCustomFilterUpdateRequest { type ApiDownloadFileRetrieveRequest (line 823) | interface ApiDownloadFileRetrieveRequest { type ApiEnterpriseSocialEmbedCreateRequest (line 827) | interface ApiEnterpriseSocialEmbedCreateRequest { type ApiEnterpriseSocialEmbedDestroyRequest (line 831) | interface ApiEnterpriseSocialEmbedDestroyRequest { type ApiEnterpriseSocialEmbedListRequest (line 835) | interface ApiEnterpriseSocialEmbedListRequest { type ApiEnterpriseSocialEmbedPartialUpdateRequest (line 841) | interface ApiEnterpriseSocialEmbedPartialUpdateRequest { type ApiEnterpriseSocialEmbedRetrieveRequest (line 846) | interface ApiEnterpriseSocialEmbedRetrieveRequest { type ApiEnterpriseSocialEmbedUpdateRequest (line 850) | interface ApiEnterpriseSocialEmbedUpdateRequest { type ApiEnterpriseSocialKeywordCascadingListRequest (line 855) | interface ApiEnterpriseSocialKeywordCascadingListRequest { type ApiEnterpriseSocialKeywordCreateRequest (line 862) | interface ApiEnterpriseSocialKeywordCreateRequest { type ApiEnterpriseSocialKeywordDestroyRequest (line 866) | interface ApiEnterpriseSocialKeywordDestroyRequest { type ApiEnterpriseSocialKeywordListRequest (line 870) | interface ApiEnterpriseSocialKeywordListRequest { type ApiEnterpriseSocialKeywordMergeUpdateRequest (line 882) | interface ApiEnterpriseSocialKeywordMergeUpdateRequest { type ApiEnterpriseSocialKeywordMoveUpdateRequest (line 888) | interface ApiEnterpriseSocialKeywordMoveUpdateRequest { type ApiEnterpriseSocialKeywordNullingListRequest (line 894) | interface ApiEnterpriseSocialKeywordNullingListRequest { type ApiEnterpriseSocialKeywordPartialUpdateRequest (line 901) | interface ApiEnterpriseSocialKeywordPartialUpdateRequest { type ApiEnterpriseSocialKeywordProtectingListRequest (line 906) | interface ApiEnterpriseSocialKeywordProtectingListRequest { type ApiEnterpriseSocialKeywordRetrieveRequest (line 913) | interface ApiEnterpriseSocialKeywordRetrieveRequest { type ApiEnterpriseSocialKeywordUpdateRequest (line 917) | interface ApiEnterpriseSocialKeywordUpdateRequest { type ApiEnterpriseSocialRecipeAipropertiesCreateRequest (line 922) | interface ApiEnterpriseSocialRecipeAipropertiesCreateRequest { type ApiEnterpriseSocialRecipeBatchUpdateUpdateRequest (line 928) | interface ApiEnterpriseSocialRecipeBatchUpdateUpdateRequest { type ApiEnterpriseSocialRecipeCascadingListRequest (line 932) | interface ApiEnterpriseSocialRecipeCascadingListRequest { type ApiEnterpriseSocialRecipeCreateRequest (line 939) | interface ApiEnterpriseSocialRecipeCreateRequest { type ApiEnterpriseSocialRecipeDeleteExternalPartialUpdateRequest (line 943) | interface ApiEnterpriseSocialRecipeDeleteExternalPartialUpdateRequest { type ApiEnterpriseSocialRecipeDestroyRequest (line 948) | interface ApiEnterpriseSocialRecipeDestroyRequest { type ApiEnterpriseSocialRecipeImageUpdateRequest (line 952) | interface ApiEnterpriseSocialRecipeImageUpdateRequest { type ApiEnterpriseSocialRecipeListRequest (line 958) | interface ApiEnterpriseSocialRecipeListRequest { type ApiEnterpriseSocialRecipeNullingListRequest (line 1007) | interface ApiEnterpriseSocialRecipeNullingListRequest { type ApiEnterpriseSocialRecipePartialUpdateRequest (line 1014) | interface ApiEnterpriseSocialRecipePartialUpdateRequest { type ApiEnterpriseSocialRecipeProtectingListRequest (line 1019) | interface ApiEnterpriseSocialRecipeProtectingListRequest { type ApiEnterpriseSocialRecipeRelatedListRequest (line 1026) | interface ApiEnterpriseSocialRecipeRelatedListRequest { type ApiEnterpriseSocialRecipeRetrieveRequest (line 1030) | interface ApiEnterpriseSocialRecipeRetrieveRequest { type ApiEnterpriseSocialRecipeShoppingUpdateRequest (line 1036) | interface ApiEnterpriseSocialRecipeShoppingUpdateRequest { type ApiEnterpriseSocialRecipeUpdateRequest (line 1041) | interface ApiEnterpriseSocialRecipeUpdateRequest { type ApiEnterpriseSpaceCreateRequest (line 1046) | interface ApiEnterpriseSpaceCreateRequest { type ApiEnterpriseSpaceDestroyRequest (line 1050) | interface ApiEnterpriseSpaceDestroyRequest { type ApiEnterpriseSpaceListRequest (line 1054) | interface ApiEnterpriseSpaceListRequest { type ApiEnterpriseSpacePartialUpdateRequest (line 1059) | interface ApiEnterpriseSpacePartialUpdateRequest { type ApiEnterpriseSpaceRetrieveRequest (line 1064) | interface ApiEnterpriseSpaceRetrieveRequest { type ApiEnterpriseSpaceUpdateRequest (line 1068) | interface ApiEnterpriseSpaceUpdateRequest { type ApiExportCreateRequest (line 1073) | interface ApiExportCreateRequest { type ApiExportLogCreateRequest (line 1077) | interface ApiExportLogCreateRequest { type ApiExportLogDestroyRequest (line 1081) | interface ApiExportLogDestroyRequest { type ApiExportLogListRequest (line 1085) | interface ApiExportLogListRequest { type ApiExportLogPartialUpdateRequest (line 1090) | interface ApiExportLogPartialUpdateRequest { type ApiExportLogRetrieveRequest (line 1095) | interface ApiExportLogRetrieveRequest { type ApiExportLogUpdateRequest (line 1099) | interface ApiExportLogUpdateRequest { type ApiFdcSearchRetrieveRequest (line 1104) | interface ApiFdcSearchRetrieveRequest { type ApiFoodAipropertiesCreateRequest (line 1109) | interface ApiFoodAipropertiesCreateRequest { type ApiFoodBatchUpdateUpdateRequest (line 1115) | interface ApiFoodBatchUpdateUpdateRequest { type ApiFoodCascadingListRequest (line 1119) | interface ApiFoodCascadingListRequest { type ApiFoodCreateRequest (line 1126) | interface ApiFoodCreateRequest { type ApiFoodDestroyRequest (line 1130) | interface ApiFoodDestroyRequest { type ApiFoodFdcCreateRequest (line 1134) | interface ApiFoodFdcCreateRequest { type ApiFoodInheritFieldRetrieveRequest (line 1139) | interface ApiFoodInheritFieldRetrieveRequest { type ApiFoodListRequest (line 1143) | interface ApiFoodListRequest { type ApiFoodMergeUpdateRequest (line 1155) | interface ApiFoodMergeUpdateRequest { type ApiFoodMoveUpdateRequest (line 1161) | interface ApiFoodMoveUpdateRequest { type ApiFoodNullingListRequest (line 1167) | interface ApiFoodNullingListRequest { type ApiFoodPartialUpdateRequest (line 1174) | interface ApiFoodPartialUpdateRequest { type ApiFoodProtectingListRequest (line 1179) | interface ApiFoodProtectingListRequest { type ApiFoodRetrieveRequest (line 1186) | interface ApiFoodRetrieveRequest { type ApiFoodShoppingUpdateRequest (line 1190) | interface ApiFoodShoppingUpdateRequest { type ApiFoodUpdateRequest (line 1195) | interface ApiFoodUpdateRequest { type ApiGetExternalFileLinkRetrieveRequest (line 1200) | interface ApiGetExternalFileLinkRetrieveRequest { type ApiGetRecipeFileRetrieveRequest (line 1204) | interface ApiGetRecipeFileRetrieveRequest { type ApiGroupRetrieveRequest (line 1208) | interface ApiGroupRetrieveRequest { type ApiHouseholdCreateRequest (line 1212) | interface ApiHouseholdCreateRequest { type ApiHouseholdDestroyRequest (line 1216) | interface ApiHouseholdDestroyRequest { type ApiHouseholdListRequest (line 1220) | interface ApiHouseholdListRequest { type ApiHouseholdPartialUpdateRequest (line 1225) | interface ApiHouseholdPartialUpdateRequest { type ApiHouseholdRetrieveRequest (line 1230) | interface ApiHouseholdRetrieveRequest { type ApiHouseholdUpdateRequest (line 1234) | interface ApiHouseholdUpdateRequest { type ApiImportCreateRequest (line 1239) | interface ApiImportCreateRequest { type ApiImportLogCreateRequest (line 1246) | interface ApiImportLogCreateRequest { type ApiImportLogDestroyRequest (line 1250) | interface ApiImportLogDestroyRequest { type ApiImportLogListRequest (line 1254) | interface ApiImportLogListRequest { type ApiImportLogPartialUpdateRequest (line 1259) | interface ApiImportLogPartialUpdateRequest { type ApiImportLogRetrieveRequest (line 1264) | interface ApiImportLogRetrieveRequest { type ApiImportLogUpdateRequest (line 1268) | interface ApiImportLogUpdateRequest { type ApiImportOpenDataCreateRequest (line 1273) | interface ApiImportOpenDataCreateRequest { type ApiIngredientCreateRequest (line 1277) | interface ApiIngredientCreateRequest { type ApiIngredientDestroyRequest (line 1281) | interface ApiIngredientDestroyRequest { type ApiIngredientListRequest (line 1285) | interface ApiIngredientListRequest { type ApiIngredientParserPostCreateRequest (line 1292) | interface ApiIngredientParserPostCreateRequest { type ApiIngredientPartialUpdateRequest (line 1296) | interface ApiIngredientPartialUpdateRequest { type ApiIngredientRetrieveRequest (line 1301) | interface ApiIngredientRetrieveRequest { type ApiIngredientUpdateRequest (line 1305) | interface ApiIngredientUpdateRequest { type ApiInventoryEntryCascadingListRequest (line 1310) | interface ApiInventoryEntryCascadingListRequest { type ApiInventoryEntryCreateRequest (line 1317) | interface ApiInventoryEntryCreateRequest { type ApiInventoryEntryDestroyRequest (line 1321) | interface ApiInventoryEntryDestroyRequest { type ApiInventoryEntryListRequest (line 1325) | interface ApiInventoryEntryListRequest { type ApiInventoryEntryNullingListRequest (line 1334) | interface ApiInventoryEntryNullingListRequest { type ApiInventoryEntryPartialUpdateRequest (line 1341) | interface ApiInventoryEntryPartialUpdateRequest { type ApiInventoryEntryProtectingListRequest (line 1346) | interface ApiInventoryEntryProtectingListRequest { type ApiInventoryEntryRetrieveRequest (line 1353) | interface ApiInventoryEntryRetrieveRequest { type ApiInventoryEntryUpdateRequest (line 1357) | interface ApiInventoryEntryUpdateRequest { type ApiInventoryLocationCascadingListRequest (line 1362) | interface ApiInventoryLocationCascadingListRequest { type ApiInventoryLocationCreateRequest (line 1369) | interface ApiInventoryLocationCreateRequest { type ApiInventoryLocationDestroyRequest (line 1373) | interface ApiInventoryLocationDestroyRequest { type ApiInventoryLocationListRequest (line 1377) | interface ApiInventoryLocationListRequest { type ApiInventoryLocationNullingListRequest (line 1382) | interface ApiInventoryLocationNullingListRequest { type ApiInventoryLocationPartialUpdateRequest (line 1389) | interface ApiInventoryLocationPartialUpdateRequest { type ApiInventoryLocationProtectingListRequest (line 1394) | interface ApiInventoryLocationProtectingListRequest { type ApiInventoryLocationRetrieveRequest (line 1401) | interface ApiInventoryLocationRetrieveRequest { type ApiInventoryLocationUpdateRequest (line 1405) | interface ApiInventoryLocationUpdateRequest { type ApiInventoryLogListRequest (line 1410) | interface ApiInventoryLogListRequest { type ApiInventoryLogRetrieveRequest (line 1417) | interface ApiInventoryLogRetrieveRequest { type ApiInviteLinkCreateRequest (line 1421) | interface ApiInviteLinkCreateRequest { type ApiInviteLinkDestroyRequest (line 1425) | interface ApiInviteLinkDestroyRequest { type ApiInviteLinkListRequest (line 1429) | interface ApiInviteLinkListRequest { type ApiInviteLinkPartialUpdateRequest (line 1440) | interface ApiInviteLinkPartialUpdateRequest { type ApiInviteLinkRetrieveRequest (line 1445) | interface ApiInviteLinkRetrieveRequest { type ApiInviteLinkUpdateRequest (line 1449) | interface ApiInviteLinkUpdateRequest { type ApiKeywordCascadingListRequest (line 1454) | interface ApiKeywordCascadingListRequest { type ApiKeywordCreateRequest (line 1461) | interface ApiKeywordCreateRequest { type ApiKeywordDestroyRequest (line 1465) | interface ApiKeywordDestroyRequest { type ApiKeywordListRequest (line 1469) | interface ApiKeywordListRequest { type ApiKeywordMergeUpdateRequest (line 1481) | interface ApiKeywordMergeUpdateRequest { type ApiKeywordMoveUpdateRequest (line 1487) | interface ApiKeywordMoveUpdateRequest { type ApiKeywordNullingListRequest (line 1493) | interface ApiKeywordNullingListRequest { type ApiKeywordPartialUpdateRequest (line 1500) | interface ApiKeywordPartialUpdateRequest { type ApiKeywordProtectingListRequest (line 1505) | interface ApiKeywordProtectingListRequest { type ApiKeywordRetrieveRequest (line 1512) | interface ApiKeywordRetrieveRequest { type ApiKeywordUpdateRequest (line 1516) | interface ApiKeywordUpdateRequest { type ApiMealPlanCreateRequest (line 1521) | interface ApiMealPlanCreateRequest { type ApiMealPlanDestroyRequest (line 1525) | interface ApiMealPlanDestroyRequest { type ApiMealPlanIcalRetrieveRequest (line 1529) | interface ApiMealPlanIcalRetrieveRequest { type ApiMealPlanListRequest (line 1535) | interface ApiMealPlanListRequest { type ApiMealPlanPartialUpdateRequest (line 1543) | interface ApiMealPlanPartialUpdateRequest { type ApiMealPlanRetrieveRequest (line 1548) | interface ApiMealPlanRetrieveRequest { type ApiMealPlanUpdateRequest (line 1552) | interface ApiMealPlanUpdateRequest { type ApiMealTypeCascadingListRequest (line 1557) | interface ApiMealTypeCascadingListRequest { type ApiMealTypeCreateRequest (line 1564) | interface ApiMealTypeCreateRequest { type ApiMealTypeDestroyRequest (line 1568) | interface ApiMealTypeDestroyRequest { type ApiMealTypeListRequest (line 1572) | interface ApiMealTypeListRequest { type ApiMealTypeNullingListRequest (line 1577) | interface ApiMealTypeNullingListRequest { type ApiMealTypePartialUpdateRequest (line 1584) | interface ApiMealTypePartialUpdateRequest { type ApiMealTypeProtectingListRequest (line 1589) | interface ApiMealTypeProtectingListRequest { type ApiMealTypeRetrieveRequest (line 1596) | interface ApiMealTypeRetrieveRequest { type ApiMealTypeUpdateRequest (line 1600) | interface ApiMealTypeUpdateRequest { type ApiOpenDataCategoryCreateRequest (line 1605) | interface ApiOpenDataCategoryCreateRequest { type ApiOpenDataCategoryDestroyRequest (line 1609) | interface ApiOpenDataCategoryDestroyRequest { type ApiOpenDataCategoryListRequest (line 1613) | interface ApiOpenDataCategoryListRequest { type ApiOpenDataCategoryPartialUpdateRequest (line 1618) | interface ApiOpenDataCategoryPartialUpdateRequest { type ApiOpenDataCategoryRetrieveRequest (line 1623) | interface ApiOpenDataCategoryRetrieveRequest { type ApiOpenDataCategoryUpdateRequest (line 1627) | interface ApiOpenDataCategoryUpdateRequest { type ApiOpenDataConversionCreateRequest (line 1632) | interface ApiOpenDataConversionCreateRequest { type ApiOpenDataConversionDestroyRequest (line 1636) | interface ApiOpenDataConversionDestroyRequest { type ApiOpenDataConversionListRequest (line 1640) | interface ApiOpenDataConversionListRequest { type ApiOpenDataConversionPartialUpdateRequest (line 1645) | interface ApiOpenDataConversionPartialUpdateRequest { type ApiOpenDataConversionRetrieveRequest (line 1650) | interface ApiOpenDataConversionRetrieveRequest { type ApiOpenDataConversionUpdateRequest (line 1654) | interface ApiOpenDataConversionUpdateRequest { type ApiOpenDataFDCRetrieveRequest (line 1659) | interface ApiOpenDataFDCRetrieveRequest { type ApiOpenDataFoodCreateRequest (line 1663) | interface ApiOpenDataFoodCreateRequest { type ApiOpenDataFoodDestroyRequest (line 1667) | interface ApiOpenDataFoodDestroyRequest { type ApiOpenDataFoodFdcCreateRequest (line 1671) | interface ApiOpenDataFoodFdcCreateRequest { type ApiOpenDataFoodListRequest (line 1676) | interface ApiOpenDataFoodListRequest { type ApiOpenDataFoodPartialUpdateRequest (line 1681) | interface ApiOpenDataFoodPartialUpdateRequest { type ApiOpenDataFoodRetrieveRequest (line 1686) | interface ApiOpenDataFoodRetrieveRequest { type ApiOpenDataFoodUpdateRequest (line 1690) | interface ApiOpenDataFoodUpdateRequest { type ApiOpenDataPropertyCreateRequest (line 1695) | interface ApiOpenDataPropertyCreateRequest { type ApiOpenDataPropertyDestroyRequest (line 1699) | interface ApiOpenDataPropertyDestroyRequest { type ApiOpenDataPropertyListRequest (line 1703) | interface ApiOpenDataPropertyListRequest { type ApiOpenDataPropertyPartialUpdateRequest (line 1708) | interface ApiOpenDataPropertyPartialUpdateRequest { type ApiOpenDataPropertyRetrieveRequest (line 1713) | interface ApiOpenDataPropertyRetrieveRequest { type ApiOpenDataPropertyUpdateRequest (line 1717) | interface ApiOpenDataPropertyUpdateRequest { type ApiOpenDataStoreCreateRequest (line 1722) | interface ApiOpenDataStoreCreateRequest { type ApiOpenDataStoreDestroyRequest (line 1726) | interface ApiOpenDataStoreDestroyRequest { type ApiOpenDataStoreListRequest (line 1730) | interface ApiOpenDataStoreListRequest { type ApiOpenDataStorePartialUpdateRequest (line 1735) | interface ApiOpenDataStorePartialUpdateRequest { type ApiOpenDataStoreRetrieveRequest (line 1740) | interface ApiOpenDataStoreRetrieveRequest { type ApiOpenDataStoreUpdateRequest (line 1744) | interface ApiOpenDataStoreUpdateRequest { type ApiOpenDataUnitCreateRequest (line 1749) | interface ApiOpenDataUnitCreateRequest { type ApiOpenDataUnitDestroyRequest (line 1753) | interface ApiOpenDataUnitDestroyRequest { type ApiOpenDataUnitListRequest (line 1757) | interface ApiOpenDataUnitListRequest { type ApiOpenDataUnitPartialUpdateRequest (line 1762) | interface ApiOpenDataUnitPartialUpdateRequest { type ApiOpenDataUnitRetrieveRequest (line 1767) | interface ApiOpenDataUnitRetrieveRequest { type ApiOpenDataUnitUpdateRequest (line 1771) | interface ApiOpenDataUnitUpdateRequest { type ApiOpenDataVersionCreateRequest (line 1776) | interface ApiOpenDataVersionCreateRequest { type ApiOpenDataVersionDestroyRequest (line 1780) | interface ApiOpenDataVersionDestroyRequest { type ApiOpenDataVersionListRequest (line 1784) | interface ApiOpenDataVersionListRequest { type ApiOpenDataVersionPartialUpdateRequest (line 1789) | interface ApiOpenDataVersionPartialUpdateRequest { type ApiOpenDataVersionRetrieveRequest (line 1794) | interface ApiOpenDataVersionRetrieveRequest { type ApiOpenDataVersionUpdateRequest (line 1798) | interface ApiOpenDataVersionUpdateRequest { type ApiPropertyCreateRequest (line 1803) | interface ApiPropertyCreateRequest { type ApiPropertyDestroyRequest (line 1807) | interface ApiPropertyDestroyRequest { type ApiPropertyListRequest (line 1811) | interface ApiPropertyListRequest { type ApiPropertyPartialUpdateRequest (line 1816) | interface ApiPropertyPartialUpdateRequest { type ApiPropertyRetrieveRequest (line 1821) | interface ApiPropertyRetrieveRequest { type ApiPropertyTypeCascadingListRequest (line 1825) | interface ApiPropertyTypeCascadingListRequest { type ApiPropertyTypeCreateRequest (line 1832) | interface ApiPropertyTypeCreateRequest { type ApiPropertyTypeDestroyRequest (line 1836) | interface ApiPropertyTypeDestroyRequest { type ApiPropertyTypeListRequest (line 1840) | interface ApiPropertyTypeListRequest { type ApiPropertyTypeNullingListRequest (line 1846) | interface ApiPropertyTypeNullingListRequest { type ApiPropertyTypePartialUpdateRequest (line 1853) | interface ApiPropertyTypePartialUpdateRequest { type ApiPropertyTypeProtectingListRequest (line 1858) | interface ApiPropertyTypeProtectingListRequest { type ApiPropertyTypeRetrieveRequest (line 1865) | interface ApiPropertyTypeRetrieveRequest { type ApiPropertyTypeUpdateRequest (line 1869) | interface ApiPropertyTypeUpdateRequest { type ApiPropertyUpdateRequest (line 1874) | interface ApiPropertyUpdateRequest { type ApiRecipeAipropertiesCreateRequest (line 1879) | interface ApiRecipeAipropertiesCreateRequest { type ApiRecipeBatchUpdateUpdateRequest (line 1885) | interface ApiRecipeBatchUpdateUpdateRequest { type ApiRecipeBookCascadingListRequest (line 1889) | interface ApiRecipeBookCascadingListRequest { type ApiRecipeBookCreateRequest (line 1896) | interface ApiRecipeBookCreateRequest { type ApiRecipeBookDestroyRequest (line 1900) | interface ApiRecipeBookDestroyRequest { type ApiRecipeBookEntryCreateRequest (line 1904) | interface ApiRecipeBookEntryCreateRequest { type ApiRecipeBookEntryDestroyRequest (line 1908) | interface ApiRecipeBookEntryDestroyRequest { type ApiRecipeBookEntryListRequest (line 1912) | interface ApiRecipeBookEntryListRequest { type ApiRecipeBookEntryPartialUpdateRequest (line 1919) | interface ApiRecipeBookEntryPartialUpdateRequest { type ApiRecipeBookEntryRetrieveRequest (line 1924) | interface ApiRecipeBookEntryRetrieveRequest { type ApiRecipeBookEntryUpdateRequest (line 1928) | interface ApiRecipeBookEntryUpdateRequest { type ApiRecipeBookListRequest (line 1933) | interface ApiRecipeBookListRequest { type ApiRecipeBookNullingListRequest (line 1944) | interface ApiRecipeBookNullingListRequest { type ApiRecipeBookPartialUpdateRequest (line 1951) | interface ApiRecipeBookPartialUpdateRequest { type ApiRecipeBookProtectingListRequest (line 1956) | interface ApiRecipeBookProtectingListRequest { type ApiRecipeBookRetrieveRequest (line 1963) | interface ApiRecipeBookRetrieveRequest { type ApiRecipeBookUpdateRequest (line 1967) | interface ApiRecipeBookUpdateRequest { type ApiRecipeCascadingListRequest (line 1972) | interface ApiRecipeCascadingListRequest { type ApiRecipeCreateRequest (line 1979) | interface ApiRecipeCreateRequest { type ApiRecipeDeleteExternalPartialUpdateRequest (line 1983) | interface ApiRecipeDeleteExternalPartialUpdateRequest { type ApiRecipeDestroyRequest (line 1988) | interface ApiRecipeDestroyRequest { type ApiRecipeFromSourceCreateRequest (line 1992) | interface ApiRecipeFromSourceCreateRequest { type ApiRecipeImageUpdateRequest (line 1996) | interface ApiRecipeImageUpdateRequest { type ApiRecipeImportCreateRequest (line 2002) | interface ApiRecipeImportCreateRequest { type ApiRecipeImportDestroyRequest (line 2006) | interface ApiRecipeImportDestroyRequest { type ApiRecipeImportImportAllCreateRequest (line 2010) | interface ApiRecipeImportImportAllCreateRequest { type ApiRecipeImportImportRecipeCreateRequest (line 2014) | interface ApiRecipeImportImportRecipeCreateRequest { type ApiRecipeImportListRequest (line 2019) | interface ApiRecipeImportListRequest { type ApiRecipeImportPartialUpdateRequest (line 2024) | interface ApiRecipeImportPartialUpdateRequest { type ApiRecipeImportRetrieveRequest (line 2029) | interface ApiRecipeImportRetrieveRequest { type ApiRecipeImportUpdateRequest (line 2033) | interface ApiRecipeImportUpdateRequest { type ApiRecipeListRequest (line 2038) | interface ApiRecipeListRequest { type ApiRecipeNullingListRequest (line 2085) | interface ApiRecipeNullingListRequest { type ApiRecipePartialUpdateRequest (line 2092) | interface ApiRecipePartialUpdateRequest { type ApiRecipeProtectingListRequest (line 2097) | interface ApiRecipeProtectingListRequest { type ApiRecipeRelatedListRequest (line 2104) | interface ApiRecipeRelatedListRequest { type ApiRecipeRetrieveRequest (line 2108) | interface ApiRecipeRetrieveRequest { type ApiRecipeShoppingUpdateRequest (line 2113) | interface ApiRecipeShoppingUpdateRequest { type ApiRecipeUpdateRequest (line 2118) | interface ApiRecipeUpdateRequest { type ApiSearchFieldsRetrieveRequest (line 2123) | interface ApiSearchFieldsRetrieveRequest { type ApiSearchPreferencePartialUpdateRequest (line 2127) | interface ApiSearchPreferencePartialUpdateRequest { type ApiSearchPreferenceRetrieveRequest (line 2132) | interface ApiSearchPreferenceRetrieveRequest { type ApiShareLinkRetrieveRequest (line 2136) | interface ApiShareLinkRetrieveRequest { type ApiShoppingListCascadingListRequest (line 2140) | interface ApiShoppingListCascadingListRequest { type ApiShoppingListCreateRequest (line 2147) | interface ApiShoppingListCreateRequest { type ApiShoppingListDestroyRequest (line 2151) | interface ApiShoppingListDestroyRequest { type ApiShoppingListEntryBulkCreateRequest (line 2155) | interface ApiShoppingListEntryBulkCreateRequest { type ApiShoppingListEntryCreateRequest (line 2159) | interface ApiShoppingListEntryCreateRequest { type ApiShoppingListEntryDestroyRequest (line 2163) | interface ApiShoppingListEntryDestroyRequest { type ApiShoppingListEntryListRequest (line 2167) | interface ApiShoppingListEntryListRequest { type ApiShoppingListEntryPartialUpdateRequest (line 2174) | interface ApiShoppingListEntryPartialUpdateRequest { type ApiShoppingListEntryRetrieveRequest (line 2179) | interface ApiShoppingListEntryRetrieveRequest { type ApiShoppingListEntryUpdateRequest (line 2183) | interface ApiShoppingListEntryUpdateRequest { type ApiShoppingListListRequest (line 2188) | interface ApiShoppingListListRequest { type ApiShoppingListNullingListRequest (line 2193) | interface ApiShoppingListNullingListRequest { type ApiShoppingListPartialUpdateRequest (line 2200) | interface ApiShoppingListPartialUpdateRequest { type ApiShoppingListProtectingListRequest (line 2205) | interface ApiShoppingListProtectingListRequest { type ApiShoppingListRecipeBulkCreateEntriesCreateRequest (line 2212) | interface ApiShoppingListRecipeBulkCreateEntriesCreateRequest { type ApiShoppingListRecipeCreateRequest (line 2217) | interface ApiShoppingListRecipeCreateRequest { type ApiShoppingListRecipeDestroyRequest (line 2221) | interface ApiShoppingListRecipeDestroyRequest { type ApiShoppingListRecipeListRequest (line 2225) | interface ApiShoppingListRecipeListRequest { type ApiShoppingListRecipePartialUpdateRequest (line 2231) | interface ApiShoppingListRecipePartialUpdateRequest { type ApiShoppingListRecipeRetrieveRequest (line 2236) | interface ApiShoppingListRecipeRetrieveRequest { type ApiShoppingListRecipeUpdateRequest (line 2240) | interface ApiShoppingListRecipeUpdateRequest { type ApiShoppingListRetrieveRequest (line 2245) | interface ApiShoppingListRetrieveRequest { type ApiShoppingListUpdateRequest (line 2249) | interface ApiShoppingListUpdateRequest { type ApiSpaceCreateRequest (line 2254) | interface ApiSpaceCreateRequest { type ApiSpaceListRequest (line 2258) | interface ApiSpaceListRequest { type ApiSpacePartialUpdateRequest (line 2263) | interface ApiSpacePartialUpdateRequest { type ApiSpaceRetrieveRequest (line 2268) | interface ApiSpaceRetrieveRequest { type ApiSpaceUpdateRequest (line 2272) | interface ApiSpaceUpdateRequest { type ApiStepCreateRequest (line 2277) | interface ApiStepCreateRequest { type ApiStepDestroyRequest (line 2281) | interface ApiStepDestroyRequest { type ApiStepListRequest (line 2285) | interface ApiStepListRequest { type ApiStepPartialUpdateRequest (line 2292) | interface ApiStepPartialUpdateRequest { type ApiStepRetrieveRequest (line 2297) | interface ApiStepRetrieveRequest { type ApiStepUpdateRequest (line 2301) | interface ApiStepUpdateRequest { type ApiStorageCascadingListRequest (line 2306) | interface ApiStorageCascadingListRequest { type ApiStorageCreateRequest (line 2313) | interface ApiStorageCreateRequest { type ApiStorageDestroyRequest (line 2317) | interface ApiStorageDestroyRequest { type ApiStorageListRequest (line 2321) | interface ApiStorageListRequest { type ApiStorageNullingListRequest (line 2326) | interface ApiStorageNullingListRequest { type ApiStoragePartialUpdateRequest (line 2333) | interface ApiStoragePartialUpdateRequest { type ApiStorageProtectingListRequest (line 2338) | interface ApiStorageProtectingListRequest { type ApiStorageRetrieveRequest (line 2345) | interface ApiStorageRetrieveRequest { type ApiStorageUpdateRequest (line 2349) | interface ApiStorageUpdateRequest { type ApiSupermarketCascadingListRequest (line 2354) | interface ApiSupermarketCascadingListRequest { type ApiSupermarketCategoryCascadingListRequest (line 2361) | interface ApiSupermarketCategoryCascadingListRequest { type ApiSupermarketCategoryCreateRequest (line 2368) | interface ApiSupermarketCategoryCreateRequest { type ApiSupermarketCategoryDestroyRequest (line 2372) | interface ApiSupermarketCategoryDestroyRequest { type ApiSupermarketCategoryListRequest (line 2376) | interface ApiSupermarketCategoryListRequest { type ApiSupermarketCategoryMergeUpdateRequest (line 2385) | interface ApiSupermarketCategoryMergeUpdateRequest { type ApiSupermarketCategoryNullingListRequest (line 2391) | interface ApiSupermarketCategoryNullingListRequest { type ApiSupermarketCategoryPartialUpdateRequest (line 2398) | interface ApiSupermarketCategoryPartialUpdateRequest { type ApiSupermarketCategoryProtectingListRequest (line 2403) | interface ApiSupermarketCategoryProtectingListRequest { type ApiSupermarketCategoryRelationCreateRequest (line 2410) | interface ApiSupermarketCategoryRelationCreateRequest { type ApiSupermarketCategoryRelationDestroyRequest (line 2414) | interface ApiSupermarketCategoryRelationDestroyRequest { type ApiSupermarketCategoryRelationListRequest (line 2418) | interface ApiSupermarketCategoryRelationListRequest { type ApiSupermarketCategoryRelationPartialUpdateRequest (line 2427) | interface ApiSupermarketCategoryRelationPartialUpdateRequest { type ApiSupermarketCategoryRelationRetrieveRequest (line 2432) | interface ApiSupermarketCategoryRelationRetrieveRequest { type ApiSupermarketCategoryRelationUpdateRequest (line 2436) | interface ApiSupermarketCategoryRelationUpdateRequest { type ApiSupermarketCategoryRetrieveRequest (line 2441) | interface ApiSupermarketCategoryRetrieveRequest { type ApiSupermarketCategoryUpdateRequest (line 2445) | interface ApiSupermarketCategoryUpdateRequest { type ApiSupermarketCreateRequest (line 2450) | interface ApiSupermarketCreateRequest { type ApiSupermarketDestroyRequest (line 2454) | interface ApiSupermarketDestroyRequest { type ApiSupermarketListRequest (line 2458) | interface ApiSupermarketListRequest { type ApiSupermarketNullingListRequest (line 2467) | interface ApiSupermarketNullingListRequest { type ApiSupermarketPartialUpdateRequest (line 2474) | interface ApiSupermarketPartialUpdateRequest { type ApiSupermarketProtectingListRequest (line 2479) | interface ApiSupermarketProtectingListRequest { type ApiSupermarketRetrieveRequest (line 2486) | interface ApiSupermarketRetrieveRequest { type ApiSupermarketUpdateRequest (line 2490) | interface ApiSupermarketUpdateRequest { type ApiSwitchActiveSpaceRetrieveRequest (line 2495) | interface ApiSwitchActiveSpaceRetrieveRequest { type ApiSyncCascadingListRequest (line 2499) | interface ApiSyncCascadingListRequest { type ApiSyncCreateRequest (line 2506) | interface ApiSyncCreateRequest { type ApiSyncDestroyRequest (line 2510) | interface ApiSyncDestroyRequest { type ApiSyncListRequest (line 2514) | interface ApiSyncListRequest { type ApiSyncLogListRequest (line 2519) | interface ApiSyncLogListRequest { type ApiSyncLogRetrieveRequest (line 2524) | interface ApiSyncLogRetrieveRequest { type ApiSyncNullingListRequest (line 2528) | interface ApiSyncNullingListRequest { type ApiSyncPartialUpdateRequest (line 2535) | interface ApiSyncPartialUpdateRequest { type ApiSyncProtectingListRequest (line 2540) | interface ApiSyncProtectingListRequest { type ApiSyncQuerySyncedFolderCreateRequest (line 2547) | interface ApiSyncQuerySyncedFolderCreateRequest { type ApiSyncRetrieveRequest (line 2552) | interface ApiSyncRetrieveRequest { type ApiSyncUpdateRequest (line 2556) | interface ApiSyncUpdateRequest { type ApiUnitCascadingListRequest (line 2561) | interface ApiUnitCascadingListRequest { type ApiUnitConversionCreateRequest (line 2568) | interface ApiUnitConversionCreateRequest { type ApiUnitConversionDestroyRequest (line 2572) | interface ApiUnitConversionDestroyRequest { type ApiUnitConversionListRequest (line 2576) | interface ApiUnitConversionListRequest { type ApiUnitConversionPartialUpdateRequest (line 2583) | interface ApiUnitConversionPartialUpdateRequest { type ApiUnitConversionRetrieveRequest (line 2588) | interface ApiUnitConversionRetrieveRequest { type ApiUnitConversionUpdateRequest (line 2592) | interface ApiUnitConversionUpdateRequest { type ApiUnitCreateRequest (line 2597) | interface ApiUnitCreateRequest { type ApiUnitDestroyRequest (line 2601) | interface ApiUnitDestroyRequest { type ApiUnitListRequest (line 2605) | interface ApiUnitListRequest { type ApiUnitMergeUpdateRequest (line 2614) | interface ApiUnitMergeUpdateRequest { type ApiUnitNullingListRequest (line 2620) | interface ApiUnitNullingListRequest { type ApiUnitPartialUpdateRequest (line 2627) | interface ApiUnitPartialUpdateRequest { type ApiUnitProtectingListRequest (line 2632) | interface ApiUnitProtectingListRequest { type ApiUnitRetrieveRequest (line 2639) | interface ApiUnitRetrieveRequest { type ApiUnitUpdateRequest (line 2643) | interface ApiUnitUpdateRequest { type ApiUserFileCascadingListRequest (line 2648) | interface ApiUserFileCascadingListRequest { type ApiUserFileCreateRequest (line 2655) | interface ApiUserFileCreateRequest { type ApiUserFileDestroyRequest (line 2666) | interface ApiUserFileDestroyRequest { type ApiUserFileListRequest (line 2670) | interface ApiUserFileListRequest { type ApiUserFileNullingListRequest (line 2679) | interface ApiUserFileNullingListRequest { type ApiUserFilePartialUpdateRequest (line 2686) | interface ApiUserFilePartialUpdateRequest { type ApiUserFileProtectingListRequest (line 2698) | interface ApiUserFileProtectingListRequest { type ApiUserFileRetrieveRequest (line 2705) | interface ApiUserFileRetrieveRequest { type ApiUserFileUpdateRequest (line 2709) | interface ApiUserFileUpdateRequest { type ApiUserListRequest (line 2721) | interface ApiUserListRequest { type ApiUserPartialUpdateRequest (line 2725) | interface ApiUserPartialUpdateRequest { type ApiUserPreferencePartialUpdateRequest (line 2730) | interface ApiUserPreferencePartialUpdateRequest { type ApiUserPreferenceRetrieveRequest (line 2735) | interface ApiUserPreferenceRetrieveRequest { type ApiUserRetrieveRequest (line 2739) | interface ApiUserRetrieveRequest { type ApiUserSpaceDestroyRequest (line 2743) | interface ApiUserSpaceDestroyRequest { type ApiUserSpaceListRequest (line 2747) | interface ApiUserSpaceListRequest { type ApiUserSpacePartialUpdateRequest (line 2753) | interface ApiUserSpacePartialUpdateRequest { type ApiUserSpaceRetrieveRequest (line 2758) | interface ApiUserSpaceRetrieveRequest { type ApiUserSpaceUpdateRequest (line 2762) | interface ApiUserSpaceUpdateRequest { type ApiViewLogCreateRequest (line 2767) | interface ApiViewLogCreateRequest { type ApiViewLogDestroyRequest (line 2771) | interface ApiViewLogDestroyRequest { type ApiViewLogListRequest (line 2775) | interface ApiViewLogListRequest { type ApiViewLogPartialUpdateRequest (line 2780) | interface ApiViewLogPartialUpdateRequest { type ApiViewLogRetrieveRequest (line 2785) | interface ApiViewLogRetrieveRequest { type ApiViewLogUpdateRequest (line 2789) | interface ApiViewLogUpdateRequest { class ApiApi (line 2797) | class ApiApi extends runtime.BaseAPI { method apiAccessTokenCreateRaw (line 2802) | async apiAccessTokenCreateRaw(requestParameters: ApiAccessTokenCreateR... method apiAccessTokenCreate (line 2834) | async apiAccessTokenCreate(requestParameters: ApiAccessTokenCreateRequ... method apiAccessTokenDestroyRaw (line 2842) | async apiAccessTokenDestroyRaw(requestParameters: ApiAccessTokenDestro... method apiAccessTokenDestroy (line 2871) | async apiAccessTokenDestroy(requestParameters: ApiAccessTokenDestroyRe... method apiAccessTokenListRaw (line 2878) | async apiAccessTokenListRaw(initOverrides?: RequestInit | runtime.Init... method apiAccessTokenList (line 2900) | async apiAccessTokenList(initOverrides?: RequestInit | runtime.InitOve... method apiAccessTokenPartialUpdateRaw (line 2908) | async apiAccessTokenPartialUpdateRaw(requestParameters: ApiAccessToken... method apiAccessTokenPartialUpdate (line 2940) | async apiAccessTokenPartialUpdate(requestParameters: ApiAccessTokenPar... method apiAccessTokenRetrieveRaw (line 2948) | async apiAccessTokenRetrieveRaw(requestParameters: ApiAccessTokenRetri... method apiAccessTokenRetrieve (line 2977) | async apiAccessTokenRetrieve(requestParameters: ApiAccessTokenRetrieve... method apiAccessTokenUpdateRaw (line 2985) | async apiAccessTokenUpdateRaw(requestParameters: ApiAccessTokenUpdateR... method apiAccessTokenUpdate (line 3024) | async apiAccessTokenUpdate(requestParameters: ApiAccessTokenUpdateRequ... method apiAiImportCreateRaw (line 3032) | async apiAiImportCreateRaw(requestParameters: ApiAiImportCreateRequest... method apiAiImportCreate (line 3113) | async apiAiImportCreate(requestParameters: ApiAiImportCreateRequest, i... method apiAiLogListRaw (line 3121) | async apiAiLogListRaw(requestParameters: ApiAiLogListRequest, initOver... method apiAiLogList (line 3151) | async apiAiLogList(requestParameters: ApiAiLogListRequest = {}, initOv... method apiAiLogRetrieveRaw (line 3159) | async apiAiLogRetrieveRaw(requestParameters: ApiAiLogRetrieveRequest, ... method apiAiLogRetrieve (line 3188) | async apiAiLogRetrieve(requestParameters: ApiAiLogRetrieveRequest, ini... method apiAiProviderCascadingListRaw (line 3196) | async apiAiProviderCascadingListRaw(requestParameters: ApiAiProviderCa... method apiAiProviderCascadingList (line 3237) | async apiAiProviderCascadingList(requestParameters: ApiAiProviderCasca... method apiAiProviderCreateRaw (line 3245) | async apiAiProviderCreateRaw(requestParameters: ApiAiProviderCreateReq... method apiAiProviderCreate (line 3277) | async apiAiProviderCreate(requestParameters: ApiAiProviderCreateReques... method apiAiProviderDestroyRaw (line 3285) | async apiAiProviderDestroyRaw(requestParameters: ApiAiProviderDestroyR... method apiAiProviderDestroy (line 3314) | async apiAiProviderDestroy(requestParameters: ApiAiProviderDestroyRequ... method apiAiProviderListRaw (line 3321) | async apiAiProviderListRaw(requestParameters: ApiAiProviderListRequest... method apiAiProviderList (line 3351) | async apiAiProviderList(requestParameters: ApiAiProviderListRequest = ... method apiAiProviderNullingListRaw (line 3359) | async apiAiProviderNullingListRaw(requestParameters: ApiAiProviderNull... method apiAiProviderNullingList (line 3400) | async apiAiProviderNullingList(requestParameters: ApiAiProviderNulling... method apiAiProviderPartialUpdateRaw (line 3408) | async apiAiProviderPartialUpdateRaw(requestParameters: ApiAiProviderPa... method apiAiProviderPartialUpdate (line 3440) | async apiAiProviderPartialUpdate(requestParameters: ApiAiProviderParti... method apiAiProviderProtectingListRaw (line 3448) | async apiAiProviderProtectingListRaw(requestParameters: ApiAiProviderP... method apiAiProviderProtectingList (line 3489) | async apiAiProviderProtectingList(requestParameters: ApiAiProviderProt... method apiAiProviderRetrieveRaw (line 3497) | async apiAiProviderRetrieveRaw(requestParameters: ApiAiProviderRetriev... method apiAiProviderRetrieve (line 3526) | async apiAiProviderRetrieve(requestParameters: ApiAiProviderRetrieveRe... method apiAiProviderUpdateRaw (line 3534) | async apiAiProviderUpdateRaw(requestParameters: ApiAiProviderUpdateReq... method apiAiProviderUpdate (line 3573) | async apiAiProviderUpdate(requestParameters: ApiAiProviderUpdateReques... method apiAiStepSortCreateRaw (line 3581) | async apiAiStepSortCreateRaw(requestParameters: ApiAiStepSortCreateReq... method apiAiStepSortCreate (line 3617) | async apiAiStepSortCreate(requestParameters: ApiAiStepSortCreateReques... method apiAutoPlanCreateRaw (line 3625) | async apiAutoPlanCreateRaw(requestParameters: ApiAutoPlanCreateRequest... method apiAutoPlanCreate (line 3657) | async apiAutoPlanCreate(requestParameters: ApiAutoPlanCreateRequest, i... method apiAutomationCreateRaw (line 3665) | async apiAutomationCreateRaw(requestParameters: ApiAutomationCreateReq... method apiAutomationCreate (line 3697) | async apiAutomationCreate(requestParameters: ApiAutomationCreateReques... method apiAutomationDestroyRaw (line 3705) | async apiAutomationDestroyRaw(requestParameters: ApiAutomationDestroyR... method apiAutomationDestroy (line 3734) | async apiAutomationDestroy(requestParameters: ApiAutomationDestroyRequ... method apiAutomationListRaw (line 3741) | async apiAutomationListRaw(requestParameters: ApiAutomationListRequest... method apiAutomationList (line 3775) | async apiAutomationList(requestParameters: ApiAutomationListRequest = ... method apiAutomationPartialUpdateRaw (line 3783) | async apiAutomationPartialUpdateRaw(requestParameters: ApiAutomationPa... method apiAutomationPartialUpdate (line 3815) | async apiAutomationPartialUpdate(requestParameters: ApiAutomationParti... method apiAutomationRetrieveRaw (line 3823) | async apiAutomationRetrieveRaw(requestParameters: ApiAutomationRetriev... method apiAutomationRetrieve (line 3852) | async apiAutomationRetrieve(requestParameters: ApiAutomationRetrieveRe... method apiAutomationUpdateRaw (line 3860) | async apiAutomationUpdateRaw(requestParameters: ApiAutomationUpdateReq... method apiAutomationUpdate (line 3899) | async apiAutomationUpdate(requestParameters: ApiAutomationUpdateReques... method apiBookmarkletImportCreateRaw (line 3907) | async apiBookmarkletImportCreateRaw(requestParameters: ApiBookmarkletI... method apiBookmarkletImportCreate (line 3939) | async apiBookmarkletImportCreate(requestParameters: ApiBookmarkletImpo... method apiBookmarkletImportDestroyRaw (line 3947) | async apiBookmarkletImportDestroyRaw(requestParameters: ApiBookmarklet... method apiBookmarkletImportDestroy (line 3976) | async apiBookmarkletImportDestroy(requestParameters: ApiBookmarkletImp... method apiBookmarkletImportListRaw (line 3983) | async apiBookmarkletImportListRaw(requestParameters: ApiBookmarkletImp... method apiBookmarkletImportList (line 4013) | async apiBookmarkletImportList(requestParameters: ApiBookmarkletImport... method apiBookmarkletImportPartialUpdateRaw (line 4021) | async apiBookmarkletImportPartialUpdateRaw(requestParameters: ApiBookm... method apiBookmarkletImportPartialUpdate (line 4053) | async apiBookmarkletImportPartialUpdate(requestParameters: ApiBookmark... method apiBookmarkletImportRetrieveRaw (line 4061) | async apiBookmarkletImportRetrieveRaw(requestParameters: ApiBookmarkle... method apiBookmarkletImportRetrieve (line 4090) | async apiBookmarkletImportRetrieve(requestParameters: ApiBookmarkletIm... method apiBookmarkletImportUpdateRaw (line 4098) | async apiBookmarkletImportUpdateRaw(requestParameters: ApiBookmarkletI... method apiBookmarkletImportUpdate (line 4137) | async apiBookmarkletImportUpdate(requestParameters: ApiBookmarkletImpo... method apiConnectorConfigCascadingListRaw (line 4145) | async apiConnectorConfigCascadingListRaw(requestParameters: ApiConnect... method apiConnectorConfigCascadingList (line 4186) | async apiConnectorConfigCascadingList(requestParameters: ApiConnectorC... method apiConnectorConfigCreateRaw (line 4194) | async apiConnectorConfigCreateRaw(requestParameters: ApiConnectorConfi... method apiConnectorConfigCreate (line 4226) | async apiConnectorConfigCreate(requestParameters: ApiConnectorConfigCr... method apiConnectorConfigDestroyRaw (line 4234) | async apiConnectorConfigDestroyRaw(requestParameters: ApiConnectorConf... method apiConnectorConfigDestroy (line 4263) | async apiConnectorConfigDestroy(requestParameters: ApiConnectorConfigD... method apiConnectorConfigListRaw (line 4270) | async apiConnectorConfigListRaw(requestParameters: ApiConnectorConfigL... method apiConnectorConfigList (line 4300) | async apiConnectorConfigList(requestParameters: ApiConnectorConfigList... method apiConnectorConfigNullingListRaw (line 4308) | async apiConnectorConfigNullingListRaw(requestParameters: ApiConnector... method apiConnectorConfigNullingList (line 4349) | async apiConnectorConfigNullingList(requestParameters: ApiConnectorCon... method apiConnectorConfigPartialUpdateRaw (line 4357) | async apiConnectorConfigPartialUpdateRaw(requestParameters: ApiConnect... method apiConnectorConfigPartialUpdate (line 4389) | async apiConnectorConfigPartialUpdate(requestParameters: ApiConnectorC... method apiConnectorConfigProtectingListRaw (line 4397) | async apiConnectorConfigProtectingListRaw(requestParameters: ApiConnec... method apiConnectorConfigProtectingList (line 4438) | async apiConnectorConfigProtectingList(requestParameters: ApiConnector... method apiConnectorConfigRetrieveRaw (line 4446) | async apiConnectorConfigRetrieveRaw(requestParameters: ApiConnectorCon... method apiConnectorConfigRetrieve (line 4475) | async apiConnectorConfigRetrieve(requestParameters: ApiConnectorConfig... method apiConnectorConfigUpdateRaw (line 4483) | async apiConnectorConfigUpdateRaw(requestParameters: ApiConnectorConfi... method apiConnectorConfigUpdate (line 4522) | async apiConnectorConfigUpdate(requestParameters: ApiConnectorConfigUp... method apiCookLogCreateRaw (line 4530) | async apiCookLogCreateRaw(requestParameters: ApiCookLogCreateRequest, ... method apiCookLogCreate (line 4562) | async apiCookLogCreate(requestParameters: ApiCookLogCreateRequest, ini... method apiCookLogDestroyRaw (line 4570) | async apiCookLogDestroyRaw(requestParameters: ApiCookLogDestroyRequest... method apiCookLogDestroy (line 4599) | async apiCookLogDestroy(requestParameters: ApiCookLogDestroyRequest, i... method apiCookLogListRaw (line 4606) | async apiCookLogListRaw(requestParameters: ApiCookLogListRequest, init... method apiCookLogList (line 4640) | async apiCookLogList(requestParameters: ApiCookLogListRequest = {}, in... method apiCookLogPartialUpdateRaw (line 4648) | async apiCookLogPartialUpdateRaw(requestParameters: ApiCookLogPartialU... method apiCookLogPartialUpdate (line 4680) | async apiCookLogPartialUpdate(requestParameters: ApiCookLogPartialUpda... method apiCookLogRetrieveRaw (line 4688) | async apiCookLogRetrieveRaw(requestParameters: ApiCookLogRetrieveReque... method apiCookLogRetrieve (line 4717) | async apiCookLogRetrieve(requestParameters: ApiCookLogRetrieveRequest,... method apiCookLogUpdateRaw (line 4725) | async apiCookLogUpdateRaw(requestParameters: ApiCookLogUpdateRequest, ... method apiCookLogUpdate (line 4764) | async apiCookLogUpdate(requestParameters: ApiCookLogUpdateRequest, ini... method apiCustomFilterCreateRaw (line 4772) | async apiCustomFilterCreateRaw(requestParameters: ApiCustomFilterCreat... method apiCustomFilterCreate (line 4804) | async apiCustomFilterCreate(requestParameters: ApiCustomFilterCreateRe... method apiCustomFilterDestroyRaw (line 4812) | async apiCustomFilterDestroyRaw(requestParameters: ApiCustomFilterDest... method apiCustomFilterDestroy (line 4841) | async apiCustomFilterDestroy(requestParameters: ApiCustomFilterDestroy... method apiCustomFilterListRaw (line 4848) | async apiCustomFilterListRaw(requestParameters: ApiCustomFilterListReq... method apiCustomFilterList (line 4898) | async apiCustomFilterList(requestParameters: ApiCustomFilterListReques... method apiCustomFilterPartialUpdateRaw (line 4906) | async apiCustomFilterPartialUpdateRaw(requestParameters: ApiCustomFilt... method apiCustomFilterPartialUpdate (line 4938) | async apiCustomFilterPartialUpdate(requestParameters: ApiCustomFilterP... method apiCustomFilterRetrieveRaw (line 4946) | async apiCustomFilterRetrieveRaw(requestParameters: ApiCustomFilterRet... method apiCustomFilterRetrieve (line 4975) | async apiCustomFilterRetrieve(requestParameters: ApiCustomFilterRetrie... method apiCustomFilterUpdateRaw (line 4983) | async apiCustomFilterUpdateRaw(requestParameters: ApiCustomFilterUpdat... method apiCustomFilterUpdate (line 5022) | async apiCustomFilterUpdate(requestParameters: ApiCustomFilterUpdateRe... method apiDownloadFileRetrieveRaw (line 5030) | async apiDownloadFileRetrieveRaw(requestParameters: ApiDownloadFileRet... method apiDownloadFileRetrieve (line 5059) | async apiDownloadFileRetrieve(requestParameters: ApiDownloadFileRetrie... method apiEnterpriseSocialEmbedCreateRaw (line 5065) | async apiEnterpriseSocialEmbedCreateRaw(requestParameters: ApiEnterpri... method apiEnterpriseSocialEmbedCreate (line 5096) | async apiEnterpriseSocialEmbedCreate(requestParameters: ApiEnterpriseS... method apiEnterpriseSocialEmbedDestroyRaw (line 5103) | async apiEnterpriseSocialEmbedDestroyRaw(requestParameters: ApiEnterpr... method apiEnterpriseSocialEmbedDestroy (line 5131) | async apiEnterpriseSocialEmbedDestroy(requestParameters: ApiEnterprise... method apiEnterpriseSocialEmbedListRaw (line 5137) | async apiEnterpriseSocialEmbedListRaw(requestParameters: ApiEnterprise... method apiEnterpriseSocialEmbedList (line 5170) | async apiEnterpriseSocialEmbedList(requestParameters: ApiEnterpriseSoc... method apiEnterpriseSocialEmbedPartialUpdateRaw (line 5177) | async apiEnterpriseSocialEmbedPartialUpdateRaw(requestParameters: ApiE... method apiEnterpriseSocialEmbedPartialUpdate (line 5208) | async apiEnterpriseSocialEmbedPartialUpdate(requestParameters: ApiEnte... method apiEnterpriseSocialEmbedRetrieveRaw (line 5215) | async apiEnterpriseSocialEmbedRetrieveRaw(requestParameters: ApiEnterp... method apiEnterpriseSocialEmbedRetrieve (line 5243) | async apiEnterpriseSocialEmbedRetrieve(requestParameters: ApiEnterpris... method apiEnterpriseSocialEmbedUpdateRaw (line 5250) | async apiEnterpriseSocialEmbedUpdateRaw(requestParameters: ApiEnterpri... method apiEnterpriseSocialEmbedUpdate (line 5288) | async apiEnterpriseSocialEmbedUpdate(requestParameters: ApiEnterpriseS... method apiEnterpriseSocialKeywordCascadingListRaw (line 5296) | async apiEnterpriseSocialKeywordCascadingListRaw(requestParameters: Ap... method apiEnterpriseSocialKeywordCascadingList (line 5337) | async apiEnterpriseSocialKeywordCascadingList(requestParameters: ApiEn... method apiEnterpriseSocialKeywordCreateRaw (line 5345) | async apiEnterpriseSocialKeywordCreateRaw(requestParameters: ApiEnterp... method apiEnterpriseSocialKeywordCreate (line 5377) | async apiEnterpriseSocialKeywordCreate(requestParameters: ApiEnterpris... method apiEnterpriseSocialKeywordDestroyRaw (line 5385) | async apiEnterpriseSocialKeywordDestroyRaw(requestParameters: ApiEnter... method apiEnterpriseSocialKeywordDestroy (line 5414) | async apiEnterpriseSocialKeywordDestroy(requestParameters: ApiEnterpri... method apiEnterpriseSocialKeywordListRaw (line 5421) | async apiEnterpriseSocialKeywordListRaw(requestParameters: ApiEnterpri... method apiEnterpriseSocialKeywordList (line 5479) | async apiEnterpriseSocialKeywordList(requestParameters: ApiEnterpriseS... method apiEnterpriseSocialKeywordMergeUpdateRaw (line 5487) | async apiEnterpriseSocialKeywordMergeUpdateRaw(requestParameters: ApiE... method apiEnterpriseSocialKeywordMergeUpdate (line 5533) | async apiEnterpriseSocialKeywordMergeUpdate(requestParameters: ApiEnte... method apiEnterpriseSocialKeywordMoveUpdateRaw (line 5541) | async apiEnterpriseSocialKeywordMoveUpdateRaw(requestParameters: ApiEn... method apiEnterpriseSocialKeywordMoveUpdate (line 5587) | async apiEnterpriseSocialKeywordMoveUpdate(requestParameters: ApiEnter... method apiEnterpriseSocialKeywordNullingListRaw (line 5595) | async apiEnterpriseSocialKeywordNullingListRaw(requestParameters: ApiE... method apiEnterpriseSocialKeywordNullingList (line 5636) | async apiEnterpriseSocialKeywordNullingList(requestParameters: ApiEnte... method apiEnterpriseSocialKeywordPartialUpdateRaw (line 5644) | async apiEnterpriseSocialKeywordPartialUpdateRaw(requestParameters: Ap... method apiEnterpriseSocialKeywordPartialUpdate (line 5676) | async apiEnterpriseSocialKeywordPartialUpdate(requestParameters: ApiEn... method apiEnterpriseSocialKeywordProtectingListRaw (line 5684) | async apiEnterpriseSocialKeywordProtectingListRaw(requestParameters: A... method apiEnterpriseSocialKeywordProtectingList (line 5725) | async apiEnterpriseSocialKeywordProtectingList(requestParameters: ApiE... method apiEnterpriseSocialKeywordRetrieveRaw (line 5733) | async apiEnterpriseSocialKeywordRetrieveRaw(requestParameters: ApiEnte... method apiEnterpriseSocialKeywordRetrieve (line 5762) | async apiEnterpriseSocialKeywordRetrieve(requestParameters: ApiEnterpr... method apiEnterpriseSocialKeywordUpdateRaw (line 5770) | async apiEnterpriseSocialKeywordUpdateRaw(requestParameters: ApiEnterp... method apiEnterpriseSocialKeywordUpdate (line 5809) | async apiEnterpriseSocialKeywordUpdate(requestParameters: ApiEnterpris... method apiEnterpriseSocialRecipeAipropertiesCreateRaw (line 5817) | async apiEnterpriseSocialRecipeAipropertiesCreateRaw(requestParameters... method apiEnterpriseSocialRecipeAipropertiesCreate (line 5860) | async apiEnterpriseSocialRecipeAipropertiesCreate(requestParameters: A... method apiEnterpriseSocialRecipeBatchUpdateUpdateRaw (line 5868) | async apiEnterpriseSocialRecipeBatchUpdateUpdateRaw(requestParameters:... method apiEnterpriseSocialRecipeBatchUpdateUpdate (line 5900) | async apiEnterpriseSocialRecipeBatchUpdateUpdate(requestParameters: Ap... method apiEnterpriseSocialRecipeCascadingListRaw (line 5908) | async apiEnterpriseSocialRecipeCascadingListRaw(requestParameters: Api... method apiEnterpriseSocialRecipeCascadingList (line 5949) | async apiEnterpriseSocialRecipeCascadingList(requestParameters: ApiEnt... method apiEnterpriseSocialRecipeCreateRaw (line 5957) | async apiEnterpriseSocialRecipeCreateRaw(requestParameters: ApiEnterpr... method apiEnterpriseSocialRecipeCreate (line 5989) | async apiEnterpriseSocialRecipeCreate(requestParameters: ApiEnterprise... method apiEnterpriseSocialRecipeDeleteExternalPartialUpdateRaw (line 5997) | async apiEnterpriseSocialRecipeDeleteExternalPartialUpdateRaw(requestP... method apiEnterpriseSocialRecipeDeleteExternalPartialUpdate (line 6029) | async apiEnterpriseSocialRecipeDeleteExternalPartialUpdate(requestPara... method apiEnterpriseSocialRecipeDestroyRaw (line 6037) | async apiEnterpriseSocialRecipeDestroyRaw(requestParameters: ApiEnterp... method apiEnterpriseSocialRecipeDestroy (line 6066) | async apiEnterpriseSocialRecipeDestroy(requestParameters: ApiEnterpris... method apiEnterpriseSocialRecipeFlatListRaw (line 6073) | async apiEnterpriseSocialRecipeFlatListRaw(initOverrides?: RequestInit... method apiEnterpriseSocialRecipeFlatList (line 6095) | async apiEnterpriseSocialRecipeFlatList(initOverrides?: RequestInit | ... method apiEnterpriseSocialRecipeImageUpdateRaw (line 6103) | async apiEnterpriseSocialRecipeImageUpdateRaw(requestParameters: ApiEn... method apiEnterpriseSocialRecipeImageUpdate (line 6155) | async apiEnterpriseSocialRecipeImageUpdate(requestParameters: ApiEnter... method apiEnterpriseSocialRecipeListRaw (line 6163) | async apiEnterpriseSocialRecipeListRaw(requestParameters: ApiEnterpris... method apiEnterpriseSocialRecipeList (line 6369) | async apiEnterpriseSocialRecipeList(requestParameters: ApiEnterpriseSo... method apiEnterpriseSocialRecipeNullingListRaw (line 6377) | async apiEnterpriseSocialRecipeNullingListRaw(requestParameters: ApiEn... method apiEnterpriseSocialRecipeNullingList (line 6418) | async apiEnterpriseSocialRecipeNullingList(requestParameters: ApiEnter... method apiEnterpriseSocialRecipePartialUpdateRaw (line 6426) | async apiEnterpriseSocialRecipePartialUpdateRaw(requestParameters: Api... method apiEnterpriseSocialRecipePartialUpdate (line 6458) | async apiEnterpriseSocialRecipePartialUpdate(requestParameters: ApiEnt... method apiEnterpriseSocialRecipeProtectingListRaw (line 6466) | async apiEnterpriseSocialRecipeProtectingListRaw(requestParameters: Ap... method apiEnterpriseSocialRecipeProtectingList (line 6507) | async apiEnterpriseSocialRecipeProtectingList(requestParameters: ApiEn... method apiEnterpriseSocialRecipeRelatedListRaw (line 6515) | async apiEnterpriseSocialRecipeRelatedListRaw(requestParameters: ApiEn... method apiEnterpriseSocialRecipeRelatedList (line 6544) | async apiEnterpriseSocialRecipeRelatedList(requestParameters: ApiEnter... method apiEnterpriseSocialRecipeRetrieveRaw (line 6552) | async apiEnterpriseSocialRecipeRetrieveRaw(requestParameters: ApiEnter... method apiEnterpriseSocialRecipeRetrieve (line 6589) | async apiEnterpriseSocialRecipeRetrieve(requestParameters: ApiEnterpri... method apiEnterpriseSocialRecipeShoppingUpdateRaw (line 6597) | async apiEnterpriseSocialRecipeShoppingUpdateRaw(requestParameters: Ap... method apiEnterpriseSocialRecipeShoppingUpdate (line 6636) | async apiEnterpriseSocialRecipeShoppingUpdate(requestParameters: ApiEn... method apiEnterpriseSocialRecipeUpdateRaw (line 6644) | async apiEnterpriseSocialRecipeUpdateRaw(requestParameters: ApiEnterpr... method apiEnterpriseSocialRecipeUpdate (line 6683) | async apiEnterpriseSocialRecipeUpdate(requestParameters: ApiEnterprise... method apiEnterpriseSpaceCreateRaw (line 6690) | async apiEnterpriseSpaceCreateRaw(requestParameters: ApiEnterpriseSpac... method apiEnterpriseSpaceCreate (line 6721) | async apiEnterpriseSpaceCreate(requestParameters: ApiEnterpriseSpaceCr... method apiEnterpriseSpaceCurrentRetrieveRaw (line 6728) | async apiEnterpriseSpaceCurrentRetrieveRaw(initOverrides?: RequestInit... method apiEnterpriseSpaceCurrentRetrieve (line 6749) | async apiEnterpriseSpaceCurrentRetrieve(initOverrides?: RequestInit | ... method apiEnterpriseSpaceDestroyRaw (line 6756) | async apiEnterpriseSpaceDestroyRaw(requestParameters: ApiEnterpriseSpa... method apiEnterpriseSpaceDestroy (line 6784) | async apiEnterpriseSpaceDestroy(requestParameters: ApiEnterpriseSpaceD... method apiEnterpriseSpaceListRaw (line 6790) | async apiEnterpriseSpaceListRaw(requestParameters: ApiEnterpriseSpaceL... method apiEnterpriseSpaceList (line 6819) | async apiEnterpriseSpaceList(requestParameters: ApiEnterpriseSpaceList... method apiEnterpriseSpacePartialUpdateRaw (line 6826) | async apiEnterpriseSpacePartialUpdateRaw(requestParameters: ApiEnterpr... method apiEnterpriseSpacePartialUpdate (line 6857) | async apiEnterpriseSpacePartialUpdate(requestParameters: ApiEnterprise... method apiEnterpriseSpaceRetrieveRaw (line 6864) | async apiEnterpriseSpaceRetrieveRaw(requestParameters: ApiEnterpriseSp... method apiEnterpriseSpaceRetrieve (line 6892) | async apiEnterpriseSpaceRetrieve(requestParameters: ApiEnterpriseSpace... method apiEnterpriseSpaceUpdateRaw (line 6899) | async apiEnterpriseSpaceUpdateRaw(requestParameters: ApiEnterpriseSpac... method apiEnterpriseSpaceUpdate (line 6937) | async apiEnterpriseSpaceUpdate(requestParameters: ApiEnterpriseSpaceUp... method apiExportCreateRaw (line 6944) | async apiExportCreateRaw(requestParameters: ApiExportCreateRequest, in... method apiExportCreate (line 6975) | async apiExportCreate(requestParameters: ApiExportCreateRequest, initO... method apiExportLogCreateRaw (line 6983) | async apiExportLogCreateRaw(requestParameters: ApiExportLogCreateReque... method apiExportLogCreate (line 7015) | async apiExportLogCreate(requestParameters: ApiExportLogCreateRequest,... method apiExportLogDestroyRaw (line 7023) | async apiExportLogDestroyRaw(requestParameters: ApiExportLogDestroyReq... method apiExportLogDestroy (line 7052) | async apiExportLogDestroy(requestParameters: ApiExportLogDestroyReques... method apiExportLogListRaw (line 7059) | async apiExportLogListRaw(requestParameters: ApiExportLogListRequest, ... method apiExportLogList (line 7089) | async apiExportLogList(requestParameters: ApiExportLogListRequest = {}... method apiExportLogPartialUpdateRaw (line 7097) | async apiExportLogPartialUpdateRaw(requestParameters: ApiExportLogPart... method apiExportLogPartialUpdate (line 7129) | async apiExportLogPartialUpdate(requestParameters: ApiExportLogPartial... method apiExportLogRetrieveRaw (line 7137) | async apiExportLogRetrieveRaw(requestParameters: ApiExportLogRetrieveR... method apiExportLogRetrieve (line 7166) | async apiExportLogRetrieve(requestParameters: ApiExportLogRetrieveRequ... method apiExportLogUpdateRaw (line 7174) | async apiExportLogUpdateRaw(requestParameters: ApiExportLogUpdateReque... method apiExportLogUpdate (line 7213) | async apiExportLogUpdate(requestParameters: ApiExportLogUpdateRequest,... method apiFdcSearchRetrieveRaw (line 7220) | async apiFdcSearchRetrieveRaw(requestParameters: ApiFdcSearchRetrieveR... method apiFdcSearchRetrieve (line 7249) | async apiFdcSearchRetrieve(requestParameters: ApiFdcSearchRetrieveRequ... method apiFoodAipropertiesCreateRaw (line 7257) | async apiFoodAipropertiesCreateRaw(requestParameters: ApiFoodAipropert... method apiFoodAipropertiesCreate (line 7300) | async apiFoodAipropertiesCreate(requestParameters: ApiFoodAiproperties... method apiFoodBatchUpdateUpdateRaw (line 7308) | async apiFoodBatchUpdateUpdateRaw(requestParameters: ApiFoodBatchUpdat... method apiFoodBatchUpdateUpdate (line 7340) | async apiFoodBatchUpdateUpdate(requestParameters: ApiFoodBatchUpdateUp... method apiFoodCascadingListRaw (line 7348) | async apiFoodCascadingListRaw(requestParameters: ApiFoodCascadingListR... method apiFoodCascadingList (line 7389) | async apiFoodCascadingList(requestParameters: ApiFoodCascadingListRequ... method apiFoodCreateRaw (line 7397) | async apiFoodCreateRaw(requestParameters: ApiFoodCreateRequest, initOv... method apiFoodCreate (line 7429) | async apiFoodCreate(requestParameters: ApiFoodCreateRequest, initOverr... method apiFoodDestroyRaw (line 7437) | async apiFoodDestroyRaw(requestParameters: ApiFoodDestroyRequest, init... method apiFoodDestroy (line 7466) | async apiFoodDestroy(requestParameters: ApiFoodDestroyRequest, initOve... method apiFoodFdcCreateRaw (line 7473) | async apiFoodFdcCreateRaw(requestParameters: ApiFoodFdcCreateRequest, ... method apiFoodFdcCreate (line 7512) | async apiFoodFdcCreate(requestParameters: ApiFoodFdcCreateRequest, ini... method apiFoodInheritFieldListRaw (line 7520) | async apiFoodInheritFieldListRaw(initOverrides?: RequestInit | runtime... method apiFoodInheritFieldList (line 7542) | async apiFoodInheritFieldList(initOverrides?: RequestInit | runtime.In... method apiFoodInheritFieldRetrieveRaw (line 7550) | async apiFoodInheritFieldRetrieveRaw(requestParameters: ApiFoodInherit... method apiFoodInheritFieldRetrieve (line 7579) | async apiFoodInheritFieldRetrieve(requestParameters: ApiFoodInheritFie... method apiFoodListRaw (line 7587) | async apiFoodListRaw(requestParameters: ApiFoodListRequest, initOverri... method apiFoodList (line 7645) | async apiFoodList(requestParameters: ApiFoodListRequest = {}, initOver... method apiFoodMergeUpdateRaw (line 7653) | async apiFoodMergeUpdateRaw(requestParameters: ApiFoodMergeUpdateReque... method apiFoodMergeUpdate (line 7699) | async apiFoodMergeUpdate(requestParameters: ApiFoodMergeUpdateRequest,... method apiFoodMoveUpdateRaw (line 7707) | async apiFoodMoveUpdateRaw(requestParameters: ApiFoodMoveUpdateRequest... method apiFoodMoveUpdate (line 7753) | async apiFoodMoveUpdate(requestParameters: ApiFoodMoveUpdateRequest, i... method apiFoodNullingListRaw (line 7761) | async apiFoodNullingListRaw(requestParameters: ApiFoodNullingListReque... method apiFoodNullingList (line 7802) | async apiFoodNullingList(requestParameters: ApiFoodNullingListRequest,... method apiFoodPartialUpdateRaw (line 7810) | async apiFoodPartialUpdateRaw(requestParameters: ApiFoodPartialUpdateR... method apiFoodPartialUpdate (line 7842) | async apiFoodPartialUpdate(requestParameters: ApiFoodPartialUpdateRequ... method apiFoodProtectingListRaw (line 7850) | async apiFoodProtectingListRaw(requestParameters: ApiFoodProtectingLis... method apiFoodProtectingList (line 7891) | async apiFoodProtectingList(requestParameters: ApiFoodProtectingListRe... method apiFoodRetrieveRaw (line 7899) | async apiFoodRetrieveRaw(requestParameters: ApiFoodRetrieveRequest, in... method apiFoodRetrieve (line 7928) | async apiFoodRetrieve(requestParameters: ApiFoodRetrieveRequest, initO... method apiFoodShoppingUpdateRaw (line 7936) | async apiFoodShoppingUpdateRaw(requestParameters: ApiFoodShoppingUpdat... method apiFoodShoppingUpdate (line 7975) | async apiFoodShoppingUpdate(requestParameters: ApiFoodShoppingUpdateRe... method apiFoodUpdateRaw (line 7983) | async apiFoodUpdateRaw(requestParameters: ApiFoodUpdateRequest, initOv... method apiFoodUpdate (line 8022) | async apiFoodUpdate(requestParameters: ApiFoodUpdateRequest, initOverr... method apiGetExternalFileLinkRetrieveRaw (line 8029) | async apiGetExternalFileLinkRetrieveRaw(requestParameters: ApiGetExter... method apiGetExternalFileLinkRetrieve (line 8057) | async apiGetExternalFileLinkRetrieve(requestParameters: ApiGetExternal... method apiGetRecipeFileRetrieveRaw (line 8063) | async apiGetRecipeFileRetrieveRaw(requestParameters: ApiGetRecipeFileR... method apiGetRecipeFileRetrieve (line 8091) | async apiGetRecipeFileRetrieve(requestParameters: ApiGetRecipeFileRetr... method apiGroupListRaw (line 8098) | async apiGroupListRaw(initOverrides?: RequestInit | runtime.InitOverri... method apiGroupList (line 8120) | async apiGroupList(initOverrides?: RequestInit | runtime.InitOverrideF... method apiGroupRetrieveRaw (line 8128) | async apiGroupRetrieveRaw(requestParameters: ApiGroupRetrieveRequest, ... method apiGroupRetrieve (line 8157) | async apiGroupRetrieve(requestParameters: ApiGroupRetrieveRequest, ini... method apiHouseholdCreateRaw (line 8165) | async apiHouseholdCreateRaw(requestParameters: ApiHouseholdCreateReque... method apiHouseholdCreate (line 8197) | async apiHouseholdCreate(requestParameters: ApiHouseholdCreateRequest,... method apiHouseholdDestroyRaw (line 8205) | async apiHouseholdDestroyRaw(requestParameters: ApiHouseholdDestroyReq... method apiHouseholdDestroy (line 8234) | async apiHouseholdDestroy(requestParameters: ApiHouseholdDestroyReques... method apiHouseholdListRaw (line 8241) | async apiHouseholdListRaw(requestParameters: ApiHouseholdListRequest, ... method apiHouseholdList (line 8271) | async apiHouseholdList(requestParameters: ApiHouseholdListRequest = {}... method apiHouseholdPartialUpdateRaw (line 8279) | async apiHouseholdPartialUpdateRaw(requestParameters: ApiHouseholdPart... method apiHouseholdPartialUpdate (line 8311) | async apiHouseholdPartialUpdate(requestParameters: ApiHouseholdPartial... method apiHouseholdRetrieveRaw (line 8319) | async apiHouseholdRetrieveRaw(requestParameters: ApiHouseholdRetrieveR... method apiHouseholdRetrieve (line 8348) | async apiHouseholdRetrieve(requestParameters: ApiHouseholdRetrieveRequ... method apiHouseholdUpdateRaw (line 8356) | async apiHouseholdUpdateRaw(requestParameters: ApiHouseholdUpdateReque... method apiHouseholdUpdate (line 8395) | async apiHouseholdUpdate(requestParameters: ApiHouseholdUpdateRequest,... method apiImportCreateRaw (line 8402) | async apiImportCreateRaw(requestParameters: ApiImportCreateRequest, in... method apiImportCreate (line 8482) | async apiImportCreate(requestParameters: ApiImportCreateRequest, initO... method apiImportLogCreateRaw (line 8490) | async apiImportLogCreateRaw(requestParameters: ApiImportLogCreateReque... method apiImportLogCreate (line 8522) | async apiImportLogCreate(requestParameters: ApiImportLogCreateRequest,... method apiImportLogDestroyRaw (line 8530) | async apiImportLogDestroyRaw(requestParameters: ApiImportLogDestroyReq... method apiImportLogDestroy (line 8559) | async apiImportLogDestroy(requestParameters: ApiImportLogDestroyReques... method apiImportLogListRaw (line 8566) | async apiImportLogListRaw(requestParameters: ApiImportLogListRequest, ... method apiImportLogList (line 8596) | async apiImportLogList(requestParameters: ApiImportLogListRequest = {}... method apiImportLogPartialUpdateRaw (line 8604) | async apiImportLogPartialUpdateRaw(requestParameters: ApiImportLogPart... method apiImportLogPartialUpdate (line 8636) | async apiImportLogPartialUpdate(requestParameters: ApiImportLogPartial... method apiImportLogRetrieveRaw (line 8644) | async apiImportLogRetrieveRaw(requestParameters: ApiImportLogRetrieveR... method apiImportLogRetrieve (line 8673) | async apiImportLogRetrieve(requestParameters: ApiImportLogRetrieveRequ... method apiImportLogUpdateRaw (line 8681) | async apiImportLogUpdateRaw(requestParameters: ApiImportLogUpdateReque... method apiImportLogUpdate (line 8720) | async apiImportLogUpdate(requestParameters: ApiImportLogUpdateRequest,... method apiImportOpenDataCreateRaw (line 8727) | async apiImportOpenDataCreateRaw(requestParameters: ApiImportOpenDataC... method apiImportOpenDataCreate (line 8758) | async apiImportOpenDataCreate(requestParameters: ApiImportOpenDataCrea... method apiImportOpenDataRetrieveRaw (line 8765) | async apiImportOpenDataRetrieveRaw(initOverrides?: RequestInit | runti... method apiImportOpenDataRetrieve (line 8786) | async apiImportOpenDataRetrieve(initOverrides?: RequestInit | runtime.... method apiIngredientCreateRaw (line 8794) | async apiIngredientCreateRaw(requestParameters: ApiIngredientCreateReq... method apiIngredientCreate (line 8826) | async apiIngredientCreate(requestParameters: ApiIngredientCreateReques... method apiIngredientDestroyRaw (line 8834) | async apiIngredientDestroyRaw(requestParameters: ApiIngredientDestroyR... method apiIngredientDestroy (line 8863) | async apiIngredientDestroy(requestParameters: ApiIngredientDestroyRequ... method apiIngredientListRaw (line 8870) | async apiIngredientListRaw(requestParameters: ApiIngredientListRequest... method apiIngredientList (line 8908) | async apiIngredientList(requestParameters: ApiIngredientListRequest = ... method apiIngredientParserPostCreateRaw (line 8915) | async apiIngredientParserPostCreateRaw(requestParameters: ApiIngredien... method apiIngredientParserPostCreate (line 8939) | async apiIngredientParserPostCreate(requestParameters: ApiIngredientPa... method apiIngredientPartialUpdateRaw (line 8947) | async apiIngredientPartialUpdateRaw(requestParameters: ApiIngredientPa... method apiIngredientPartialUpdate (line 8979) | async apiIngredientPartialUpdate(requestParameters: ApiIngredientParti... method apiIngredientRetrieveRaw (line 8987) | async apiIngredientRetrieveRaw(requestParameters: ApiIngredientRetriev... method apiIngredientRetrieve (line 9016) | async apiIngredientRetrieve(requestParameters: ApiIngredientRetrieveRe... method apiIngredientUpdateRaw (line 9024) | async apiIngredientUpdateRaw(requestParameters: ApiIngredientUpdateReq... method apiIngredientUpdate (line 9063) | async apiIngredientUpdate(requestParameters: ApiIngredientUpdateReques... method apiInventoryEntryCascadingListRaw (line 9071) | async apiInventoryEntryCascadingListRaw(requestParameters: ApiInventor... method apiInventoryEntryCascadingList (line 9112) | async apiInventoryEntryCascadingList(requestParameters: ApiInventoryEn... method apiInventoryEntryCreateRaw (line 9120) | async apiInventoryEntryCreateRaw(requestParameters: ApiInventoryEntryC... method apiInventoryEntryCreate (line 9152) | async apiInventoryEntryCreate(requestParameters: ApiInventoryEntryCrea... method apiInventoryEntryDestroyRaw (line 9160) | async apiInventoryEntryDestroyRaw(requestParameters: ApiInventoryEntry... method apiInventoryEntryDestroy (line 9189) | async apiInventoryEntryDestroy(requestParameters: ApiInventoryEntryDes... method apiInventoryEntryListRaw (line 9196) | async apiInventoryEntryListRaw(requestParameters: ApiInventoryEntryLis... method apiInventoryEntryList (line 9242) | async apiInventoryEntryList(requestParameters: ApiInventoryEntryListRe... method apiInventoryEntryNullingListRaw (line 9250) | async apiInventoryEntryNullingListRaw(requestParameters: ApiInventoryE... method apiInventoryEntryNullingList (line 9291) | async apiInventoryEntryNullingList(requestParameters: ApiInventoryEntr... method apiInventoryEntryPartialUpdateRaw (line 9299) | async apiInventoryEntryPartialUpdateRaw(requestParameters: ApiInventor... method apiInventoryEntryPartialUpdate (line 9331) | async apiInventoryEntryPartialUpdate(requestParameters: ApiInventoryEn... method apiInventoryEntryProtectingListRaw (line 9339) | async apiInventoryEntryProtectingListRaw(requestParameters: ApiInvento... method apiInventoryEntryProtectingList (line 9380) | async apiInventoryEntryProtectingList(requestParameters: ApiInventoryE... method apiInventoryEntryRetrieveRaw (line 9388) | async apiInventoryEntryRetrieveRaw(requestParameters: ApiInventoryEntr... method apiInventoryEntryRetrieve (line 9417) | async apiInventoryEntryRetrieve(requestParameters: ApiInventoryEntryRe... method apiInventoryEntryUpdateRaw (line 9425) | async apiInventoryEntryUpdateRaw(requestParameters: ApiInventoryEntryU... method apiInventoryEntryUpdate (line 9464) | async apiInventoryEntryUpdate(requestParameters: ApiInventoryEntryUpda... method apiInventoryLocationCascadingListRaw (line 9472) | async apiInventoryLocationCascadingListRaw(requestParameters: ApiInven... method apiInventoryLocationCascadingList (line 9513) | async apiInventoryLocationCascadingList(requestParameters: ApiInventor... method apiInventoryLocationCreateRaw (line 9521) | async apiInventoryLocationCreateRaw(requestParameters: ApiInventoryLoc... method apiInventoryLocationCreate (line 9553) | async apiInventoryLocationCreate(requestParameters: ApiInventoryLocati... method apiInventoryLocationDestroyRaw (line 9561) | async apiInventoryLocationDestroyRaw(requestParameters: ApiInventoryLo... method apiInventoryLocationDestroy (line 9590) | async apiInventoryLocationDestroy(requestParameters: ApiInventoryLocat... method apiInventoryLocationListRaw (line 9597) | async apiInventoryLocationListRaw(requestParameters: ApiInventoryLocat... method apiInventoryLocationList (line 9627) | async apiInventoryLocationList(requestParameters: ApiInventoryLocation... method apiInventoryLocationNullingListRaw (line 9635) | async apiInventoryLocationNullingListRaw(requestParameters: ApiInvento... method apiInventoryLocationNullingList (line 9676) | async apiInventoryLocationNullingList(requestParameters: ApiInventoryL... method apiInventoryLocationPartialUpdateRaw (line 9684) | async apiInventoryLocationPartialUpdateRaw(requestParameters: ApiInven... method apiInventoryLocationPartialUpdate (line 9716) | async apiInventoryLocationPartialUpdate(requestParameters: ApiInventor... method apiInventoryLocationProtectingListRaw (line 9724) | async apiInventoryLocationProtectingListRaw(requestParameters: ApiInve... method apiInventoryLocationProtectingList (line 9765) | async apiInventoryLocationProtectingList(requestParameters: ApiInvento... method apiInventoryLocationRetrieveRaw (line 9773) | async apiInventoryLocationRetrieveRaw(requestParameters: ApiInventoryL... method apiInventoryLocationRetrieve (line 9802) | async apiInventoryLocationRetrieve(requestParameters: ApiInventoryLoca... method apiInventoryLocationUpdateRaw (line 9810) | async apiInventoryLocationUpdateRaw(requestParameters: ApiInventoryLoc... method apiInventoryLocationUpdate (line 9849) | async apiInventoryLocationUpdate(requestParameters: ApiInventoryLocati... method apiInventoryLogListRaw (line 9857) | async apiInventoryLogListRaw(requestParameters: ApiInventoryLogListReq... method apiInventoryLogList (line 9895) | async apiInventoryLogList(requestParameters: ApiInventoryLogListReques... method apiInventoryLogRetrieveRaw (line 9903) | async apiInventoryLogRetrieveRaw(requestParameters: ApiInventoryLogRet... method apiInventoryLogRetrieve (line 9932) | async apiInventoryLogRetrieve(requestParameters: ApiInventoryLogRetrie... method apiInviteLinkCreateRaw (line 9940) | async apiInviteLinkCreateRaw(requestParameters: ApiInviteLinkCreateReq... method apiInviteLinkCreate (line 9972) | async apiInviteLinkCreate(requestParameters: ApiInviteLinkCreateReques... method apiInviteLinkDestroyRaw (line 9980) | async apiInviteLinkDestroyRaw(requestParameters: ApiInviteLinkDestroyR... method apiInviteLinkDestroy (line 10009) | async apiInviteLinkDestroy(requestParameters: ApiInviteLinkDestroyRequ... method apiInviteLinkListRaw (line 10016) | async apiInviteLinkListRaw(requestParameters: ApiInviteLinkListRequest... method apiInviteLinkList (line 10070) | async apiInviteLinkList(requestParameters: ApiInviteLinkListRequest = ... method apiInviteLinkPartialUpdateRaw (line 10078) | async apiInviteLinkPartialUpdateRaw(requestParameters: ApiInviteLinkPa... method apiInviteLinkPartialUpdate (line 10110) | async apiInviteLinkPartialUpdate(requestParameters: ApiInviteLinkParti... method apiInviteLinkRetrieveRaw (line 10118) | async apiInviteLinkRetrieveRaw(requestParameters: ApiInviteLinkRetriev... method apiInviteLinkRetrieve (line 10147) | async apiInviteLinkRetrieve(requestParameters: ApiInviteLinkRetrieveRe... method apiInviteLinkUpdateRaw (line 10155) | async apiInviteLinkUpdateRaw(requestParameters: ApiInviteLinkUpdateReq... method apiInviteLinkUpdate (line 10194) | async apiInviteLinkUpdate(requestParameters: ApiInviteLinkUpdateReques... method apiKeywordCascadingListRaw (line 10202) | async apiKeywordCascadingListRaw(requestParameters: ApiKeywordCascadin... method apiKeywordCascadingList (line 10243) | async apiKeywordCascadingList(requestParameters: ApiKeywordCascadingLi... method apiKeywordCreateRaw (line 10251) | async apiKeywordCreateRaw(requestParameters: ApiKeywordCreateRequest, ... method apiKeywordCreate (line 10283) | async apiKeywordCreate(requestParameters: ApiKeywordCreateRequest, ini... method apiKeywordDestroyRaw (line 10291) | async apiKeywordDestroyRaw(requestParameters: ApiKeywordDestroyRequest... method apiKeywordDestroy (line 10320) | async apiKeywordDestroy(requestParameters: ApiKeywordDestroyRequest, i... method apiKeywordListRaw (line 10327) | async apiKeywordListRaw(requestParameters: ApiKeywordListRequest, init... method apiKeywordList (line 10385) | async apiKeywordList(requestParameters: ApiKeywordListRequest = {}, in... method apiKeywordMergeUpdateRaw (line 10393) | async apiKeywordMergeUpdateRaw(requestParameters: ApiKeywordMergeUpdat... method apiKeywordMergeUpdate (line 10439) | async apiKeywordMergeUpdate(requestParameters: ApiKeywordMergeUpdateRe... method apiKeywordMoveUpdateRaw (line 10447) | async apiKeywordMoveUpdateRaw(requestParameters: ApiKeywordMoveUpdateR... method apiKeywordMoveUpdate (line 10493) | async apiKeywordMoveUpdate(requestParameters: ApiKeywordMoveUpdateRequ... method apiKeywordNullingListRaw (line 10501) | async apiKeywordNullingListRaw(requestParameters: ApiKeywordNullingLis... method apiKeywordNullingList (line 10542) | async apiKeywordNullingList(requestParameters: ApiKeywordNullingListRe... method apiKeywordPartialUpdateRaw (line 10550) | async apiKeywordPartialUpdateRaw(requestParameters: ApiKeywordPartialU... method apiKeywordPartialUpdate (line 10582) | async apiKeywordPartialUpdate(requestParameters: ApiKeywordPartialUpda... method apiKeywordProtectingListRaw (line 10590) | async apiKeywordProtectingListRaw(requestParameters: ApiKeywordProtect... method apiKeywordProtectingList (line 10631) | async apiKeywordProtectingList(requestParameters: ApiKeywordProtecting... method apiKeywordRetrieveRaw (line 10639) | async apiKeywordRetrieveRaw(requestParameters: ApiKeywordRetrieveReque... method apiKeywordRetrieve (line 10668) | async apiKeywordRetrieve(requestParameters: ApiKeywordRetrieveRequest,... method apiKeywordUpdateRaw (line 10676) | async apiKeywordUpdateRaw(requestParameters: ApiKeywordUpdateRequest, ... method apiKeywordUpdate (line 10715) | async apiKeywordUpdate(requestParameters: ApiKeywordUpdateRequest, ini... method apiLocalizationListRaw (line 10722) | async apiLocalizationListRaw(initOverrides?: RequestInit | runtime.Ini... method apiLocalizationList (line 10743) | async apiLocalizationList(initOverrides?: RequestInit | runtime.InitOv... method apiMealPlanCreateRaw (line 10751) | async apiMealPlanCreateRaw(requestParameters: ApiMealPlanCreateRequest... method apiMealPlanCreate (line 10783) | async apiMealPlanCreate(requestParameters: ApiMealPlanCreateRequest, i... method apiMealPlanDestroyRaw (line 10791) | async apiMealPlanDestroyRaw(requestParameters: ApiMealPlanDestroyReque... method apiMealPlanDestroy (line 10820) | async apiMealPlanDestroy(requestParameters: ApiMealPlanDestroyRequest,... method apiMealPlanIcalRetrieveRaw (line 10827) | async apiMealPlanIcalRetrieveRaw(requestParameters: ApiMealPlanIcalRet... method apiMealPlanIcalRetrieve (line 10865) | async apiMealPlanIcalRetrieve(requestParameters: ApiMealPlanIcalRetrie... method apiMealPlanListRaw (line 10873) | async apiMealPlanListRaw(requestParameters: ApiMealPlanListRequest, in... method apiMealPlanList (line 10915) | async apiMealPlanList(requestParameters: ApiMealPlanListRequest = {}, ... method apiMealPlanPartialUpdateRaw (line 10923) | async apiMealPlanPartialUpdateRaw(requestParameters: ApiMealPlanPartia... method apiMealPlanPartialUpdate (line 10955) | async apiMealPlanPartialUpdate(requestParameters: ApiMealPlanPartialUp... method apiMealPlanRetrieveRaw (line 10963) | async apiMealPlanRetrieveRaw(requestParameters: ApiMealPlanRetrieveReq... method apiMealPlanRetrieve (line 10992) | async apiMealPlanRetrieve(requestParameters: ApiMealPlanRetrieveReques... method apiMealPlanUpdateRaw (line 11000) | async apiMealPlanUpdateRaw(requestParameters: ApiMealPlanUpdateRequest... method apiMealPlanUpdate (line 11039) | async apiMealPlanUpdate(requestParameters: ApiMealPlanUpdateRequest, i... method apiMealTypeCascadingListRaw (line 11047) | async apiMealTypeCascadingListRaw(requestParameters: ApiMealTypeCascad... method apiMealTypeCascadingList (line 11088) | async apiMealTypeCascadingList(requestParameters: ApiMealTypeCascading... method apiMealTypeCreateRaw (line 11096) | async apiMealTypeCreateRaw(requestParameters: ApiMealTypeCreateRequest... method apiMealTypeCreate (line 11128) | async apiMealTypeCreate(requestParameters: ApiMealTypeCreateRequest, i... method apiMealTypeDestroyRaw (line 11136) | async apiMealTypeDestroyRaw(requestParameters: ApiMealTypeDestroyReque... method apiMealTypeDestroy (line 11165) | async apiMealTypeDestroy(requestParameters: ApiMealTypeDestroyRequest,... method apiMealTypeListRaw (line 11172) | async apiMealTypeListRaw(requestParameters: ApiMealTypeListRequest, in... method apiMealTypeList (line 11202) | async apiMealTypeList(requestParameters: ApiMealTypeListRequest = {}, ... method apiMealTypeNullingListRaw (line 11210) | async apiMealTypeNullingListRaw(requestParameters: ApiMealTypeNullingL... method apiMealTypeNullingList (line 11251) | async apiMealTypeNullingList(requestParameters: ApiMealTypeNullingList... method apiMealTypePartialUpdateRaw (line 11259) | async apiMealTypePartialUpdateRaw(requestParameters: ApiMealTypePartia... method apiMealTypePartialUpdate (line 11291) | async apiMealTypePartialUpdate(requestParameters: ApiMealTypePartialUp... method apiMealTypeProtectingListRaw (line 11299) | async apiMealTypeProtectingListRaw(requestParameters: ApiMealTypeProte... method apiMealTypeProtectingList (line 11340) | async apiMealTypeProtectingList(requestParameters: ApiMealTypeProtecti... method apiMealTypeRetrieveRaw (line 11348) | async apiMealTypeRetrieveRaw(requestParameters: ApiMealTypeRetrieveReq... method apiMealTypeRetrieve (line 11377) | async apiMealTypeRetrieve(requestParameters: ApiMealTypeRetrieveReques... method apiMealTypeUpdateRaw (line 11385) | async apiMealTypeUpdateRaw(requestParameters: ApiMealTypeUpdateRequest... method apiMealTypeUpdate (line 11424) | async apiMealTypeUpdate(requestParameters: ApiMealTypeUpdateRequest, i... method apiOpenDataCategoryCreateRaw (line 11431) | async apiOpenDataCategoryCreateRaw(requestParameters: ApiOpenDataCateg... method apiOpenDataCategoryCreate (line 11462) | async apiOpenDataCategoryCreate(requestParameters: ApiOpenDataCategory... method apiOpenDataCategoryDestroyRaw (line 11469) | async apiOpenDataCategoryDestroyRaw(requestParameters: ApiOpenDataCate... method apiOpenDataCategoryDestroy (line 11497) | async apiOpenDataCategoryDestroy(requestParameters: ApiOpenDataCategor... method apiOpenDataCategoryListRaw (line 11503) | async apiOpenDataCategoryListRaw(requestParameters: ApiOpenDataCategor... method apiOpenDataCategoryList (line 11532) | async apiOpenDataCategoryList(requestParameters: ApiOpenDataCategoryLi... method apiOpenDataCategoryPartialUpdateRaw (line 11539) | async apiOpenDataCategoryPartialUpdateRaw(requestParameters: ApiOpenDa... method apiOpenDataCategoryPartialUpdate (line 11570) | async apiOpenDataCategoryPartialUpdate(requestParameters: ApiOpenDataC... method apiOpenDataCategoryRetrieveRaw (line 11577) | async apiOpenDataCategoryRetrieveRaw(requestParameters: ApiOpenDataCat... method apiOpenDataCategoryRetrieve (line 11605) | async apiOpenDataCategoryRetrieve(requestParameters: ApiOpenDataCatego... method apiOpenDataCategoryUpdateRaw (line 11612) | async apiOpenDataCategoryUpdateRaw(requestParameters: ApiOpenDataCateg... method apiOpenDataCategoryUpdate (line 11650) | async apiOpenDataCategoryUpdate(requestParameters: ApiOpenDataCategory... method apiOpenDataConversionCreateRaw (line 11657) | async apiOpenDataConversionCreateRaw(requestParameters: ApiOpenDataCon... method apiOpenDataConversionCreate (line 11688) | async apiOpenDataConversionCreate(requestParameters: ApiOpenDataConver... method apiOpenDataConversionDestroyRaw (line 11695) | async apiOpenDataConversionDestroyRaw(requestParameters: ApiOpenDataCo... method apiOpenDataConversionDestroy (line 11723) | async apiOpenDataConversionDestroy(requestParameters: ApiOpenDataConve... method apiOpenDataConversionListRaw (line 11729) | async apiOpenDataConversionListRaw(requestParameters: ApiOpenDataConve... method apiOpenDataConversionList (line 11758) | async apiOpenDataConversionList(requestParameters: ApiOpenDataConversi... method apiOpenDataConversionPartialUpdateRaw (line 11765) | async apiOpenDataConversionPartialUpdateRaw(requestParameters: ApiOpen... method apiOpenDataConversionPartialUpdate (line 11796) | async apiOpenDataConversionPartialUpdate(requestParameters: ApiOpenDat... method apiOpenDataConversionRetrieveRaw (line 11803) | async apiOpenDataConversionRetrieveRaw(requestParameters: ApiOpenDataC... method apiOpenDataConversionRetrieve (line 11831) | async apiOpenDataConversionRetrieve(requestParameters: ApiOpenDataConv... method apiOpenDataConversionUpdateRaw (line 11838) | async apiOpenDataConversionUpdateRaw(requestParameters: ApiOpenDataCon... method apiOpenDataConversionUpdate (line 11876) | async apiOpenDataConversionUpdate(requestParameters: ApiOpenDataConver... method apiOpenDataFDCRetrieveRaw (line 11883) | async apiOpenDataFDCRetrieveRaw(requestParameters: ApiOpenDataFDCRetri... method apiOpenDataFDCRetrieve (line 11911) | async apiOpenDataFDCRetrieve(requestParameters: ApiOpenDataFDCRetrieve... method apiOpenDataFoodCreateRaw (line 11917) | async apiOpenDataFoodCreateRaw(requestParameters: ApiOpenDataFoodCreat... method apiOpenDataFoodCreate (line 11948) | async apiOpenDataFoodCreate(requestParameters: ApiOpenDataFoodCreateRe... method apiOpenDataFoodDestroyRaw (line 11955) | async apiOpenDataFoodDestroyRaw(requestParameters: ApiOpenDataFoodDest... method apiOpenDataFoodDestroy (line 11983) | async apiOpenDataFoodDestroy(requestParameters: ApiOpenDataFoodDestroy... method apiOpenDataFoodFdcCreateRaw (line 11990) | async apiOpenDataFoodFdcCreateRaw(requestParameters: ApiOpenDataFoodFd... method apiOpenDataFoodFdcCreate (line 12029) | async apiOpenDataFoodFdcCreate(requestParameters: ApiOpenDataFoodFdcCr... method apiOpenDataFoodListRaw (line 12036) | async apiOpenDataFoodListRaw(requestParameters: ApiOpenDataFoodListReq... method apiOpenDataFoodList (line 12065) | async apiOpenDataFoodList(requestParameters: ApiOpenDataFoodListReques... method apiOpenDataFoodPartialUpdateRaw (line 12072) | async apiOpenDataFoodPartialUpdateRaw(requestParameters: ApiOpenDataFo... method apiOpenDataFoodPartialUpdate (line 12103) | async apiOpenDataFoodPartialUpdate(requestParameters: ApiOpenDataFoodP... method apiOpenDataFoodRetrieveRaw (line 12110) | async apiOpenDataFoodRetrieveRaw(requestParameters: ApiOpenDataFoodRet... method apiOpenDataFoodRetrieve (line 12138) | async apiOpenDataFoodRetrieve(requestParameters: ApiOpenDataFoodRetrie... method apiOpenDataFoodUpdateRaw (line 12145) | async apiOpenDataFoodUpdateRaw(requestParameters: ApiOpenDataFoodUpdat... method apiOpenDataFoodUpdate (line 12183) | async apiOpenDataFoodUpdate(requestParameters: ApiOpenDataFoodUpdateRe... method apiOpenDataPropertyCreateRaw (line 12190) | async apiOpenDataPropertyCreateRaw(requestParameters: ApiOpenDataPrope... method apiOpenDataPropertyCreate (line 12221) | async apiOpenDataPropertyCreate(requestParameters: ApiOpenDataProperty... method apiOpenDataPropertyDestroyRaw (line 12228) | async apiOpenDataPropertyDestroyRaw(requestParameters: ApiOpenDataProp... method apiOpenDataPropertyDestroy (line 12256) | async apiOpenDataPropertyDestroy(requestParameters: ApiOpenDataPropert... method apiOpenDataPropertyListRaw (line 12262) | async apiOpenDataPropertyListRaw(requestParameters: ApiOpenDataPropert... method apiOpenDataPropertyList (line 12291) | async apiOpenDataPropertyList(requestParameters: ApiOpenDataPropertyLi... method apiOpenDataPropertyPartialUpdateRaw (line 12298) | async apiOpenDataPropertyPartialUpdateRaw(requestParameters: ApiOpenDa... method apiOpenDataPropertyPartialUpdate (line 12329) | async apiOpenDataPropertyPartialUpdate(requestParameters: ApiOpenDataP... method apiOpenDataPropertyRetrieveRaw (line 12336) | async apiOpenDataPropertyRetrieveRaw(requestParameters: ApiOpenDataPro... method apiOpenDataPropertyRetrieve (line 12364) | async apiOpenDataPropertyRetrieve(requestParameters: ApiOpenDataProper... method apiOpenDataPropertyUpdateRaw (line 12371) | async apiOpenDataPropertyUpdateRaw(requestParameters: ApiOpenDataPrope... method apiOpenDataPropertyUpdate (line 12409) | async apiOpenDataPropertyUpdate(requestParameters: ApiOpenDataProperty... method apiOpenDataStatsRetrieveRaw (line 12416) | async apiOpenDataStatsRetrieveRaw(initOverrides?: RequestInit | runtim... method apiOpenDataStatsRetrieve (line 12437) | async apiOpenDataStatsRetrieve(initOverrides?: RequestInit | runtime.I... method apiOpenDataStoreCreateRaw (line 12443) | async apiOpenDataStoreCreateRaw(requestParameters: ApiOpenDataStoreCre... method apiOpenDataStoreCreate (line 12474) | async apiOpenDataStoreCreate(requestParameters: ApiOpenDataStoreCreate... method apiOpenDataStoreDestroyRaw (line 12481) | async apiOpenDataStoreDestroyRaw(requestParameters: ApiOpenDataStoreDe... method apiOpenDataStoreDestroy (line 12509) | async apiOpenDataStoreDestroy(requestParameters: ApiOpenDataStoreDestr... method apiOpenDataStoreListRaw (line 12515) | async apiOpenDataStoreListRaw(requestParameters: ApiOpenDataStoreListR... method apiOpenDataStoreList (line 12544) | async apiOpenDataStoreList(requestParameters: ApiOpenDataStoreListRequ... method apiOpenDataStorePartialUpdateRaw (line 12551) | async apiOpenDataStorePartialUpdateRaw(requestParameters: ApiOpenDataS... method apiOpenDataStorePartialUpdate (line 12582) | async apiOpenDataStorePartialUpdate(requestParameters: ApiOpenDataStor... method apiOpenDataStoreRetrieveRaw (line 12589) | async apiOpenDataStoreRetrieveRaw(requestParameters: ApiOpenDataStoreR... method apiOpenDataStoreRetrieve (line 12617) | async apiOpenDataStoreRetrieve(requestParameters: ApiOpenDataStoreRetr... method apiOpenDataStoreUpdateRaw (line 12624) | async apiOpenDataStoreUpdateRaw(requestParameters: ApiOpenDataStoreUpd... method apiOpenDataStoreUpdate (line 12662) | async apiOpenDataStoreUpdate(requestParameters: ApiOpenDataStoreUpdate... method apiOpenDataUnitCreateRaw (line 12669) | async apiOpenDataUnitCreateRaw(requestParameters: ApiOpenDataUnitCreat... method apiOpenDataUnitCreate (line 12700) | async apiOpenDataUnitCreate(requestParameters: ApiOpenDataUnitCreateRe... method apiOpenDataUnitDestroyRaw (line 12707) | async apiOpenDataUnitDestroyRaw(requestParameters: ApiOpenDataUnitDest... method apiOpenDataUnitDestroy (line 12735) | async apiOpenDataUnitDestroy(requestParameters: ApiOpenDataUnitDestroy... method apiOpenDataUnitListRaw (line 12741) | async apiOpenDataUnitListRaw(requestParameters: ApiOpenDataUnitListReq... method apiOpenDataUnitList (line 12770) | async apiOpenDataUnitList(requestParameters: ApiOpenDataUnitListReques... method apiOpenDataUnitPartialUpdateRaw (line 12777) | async apiOpenDataUnitPartialUpdateRaw(requestParameters: ApiOpenDataUn... method apiOpenDataUnitPartialUpdate (line 12808) | async apiOpenDataUnitPartialUpdate(requestParameters: ApiOpenDataUnitP... method apiOpenDataUnitRetrieveRaw (line 12815) | async apiOpenDataUnitRetrieveRaw(requestParameters: ApiOpenDataUnitRet... method apiOpenDataUnitRetrieve (line 12843) | async apiOpenDataUnitRetrieve(requestParameters: ApiOpenDataUnitRetrie... method apiOpenDataUnitUpdateRaw (line 12850) | async apiOpenDataUnitUpdateRaw(requestParameters: ApiOpenDataUnitUpdat... method apiOpenDataUnitUpdate (line 12888) | async apiOpenDataUnitUpdate(requestParameters: ApiOpenDataUnitUpdateRe... method apiOpenDataVersionCreateRaw (line 12895) | async apiOpenDataVersionCreateRaw(requestParameters: ApiOpenDataVersio... method apiOpenDataVersionCreate (line 12926) | async apiOpenDataVersionCreate(requestParameters: ApiOpenDataVersionCr... method apiOpenDataVersionDestroyRaw (line 12933) | async apiOpenDataVersionDestroyRaw(requestParameters: ApiOpenDataVersi... method apiOpenDataVersionDestroy (line 12961) | async apiOpenDataVersionDestroy(requestParameters: ApiOpenDataVersionD... method apiOpenDataVersionListRaw (line 12967) | async apiOpenDataVersionListRaw(requestParameters: ApiOpenDataVersionL... method apiOpenDataVersionList (line 12996) | async apiOpenDataVersionList(requestParameters: ApiOpenDataVersionList... method apiOpenDataVersionPartialUpdateRaw (line 13003) | async apiOpenDataVersionPartialUpdateRaw(requestParameters: ApiOpenDat... method apiOpenDataVersionPartialUpdate (line 13034) | async apiOpenDataVersionPartialUpdate(requestParameters: ApiOpenDataVe... method apiOpenDataVersionRetrieveRaw (line 13041) | async apiOpenDataVersionRetrieveRaw(requestParameters: ApiOpenDataVers... method apiOpenDataVersionRetrieve (line 13069) | async apiOpenDataVersionRetrieve(requestParameters: ApiOpenDataVersion... method apiOpenDataVersionUpdateRaw (line 13076) | async apiOpenDataVersionUpdateRaw(requestParameters: ApiOpenDataVersio... method apiOpenDataVersionUpdate (line 13114) | async apiOpenDataVersionUpdate(requestParameters: ApiOpenDataVersionUp... method apiPropertyCreateRaw (line 13122) | async apiPropertyCreateRaw(requestParameters: ApiPropertyCreateRequest... method apiPropertyCreate (line 13154) | async apiPropertyCreate(requestParameters: ApiPropertyCreateRequest, i... method apiPropertyDestroyRaw (line 13162) | async apiPropertyDestroyRaw(requestParameters: ApiPropertyDestroyReque... method apiPropertyDestroy (line 13191) | async apiPropertyDestroy(requestParameters: ApiPropertyDestroyRequest,... method apiPropertyListRaw (line 13198) | async apiPropertyListRaw(requestParameters: ApiPropertyListRequest, in... method apiPropertyList (line 13228) | async apiPropertyList(requestParameters: ApiPropertyListRequest = {}, ... method apiPropertyPartialUpdateRaw (line 13236) | async apiPropertyPartialUpdateRaw(requestParameters: ApiPropertyPartia... method apiPropertyPartialUpdate (line 13268) | async apiPropertyPartialUpdate(requestParameters: ApiPropertyPartialUp... method apiPropertyRetrieveRaw (line 13276) | async apiPropertyRetrieveRaw(requestParameters: ApiPropertyRetrieveReq... method apiPropertyRetrieve (line 13305) | async apiPropertyRetrieve(requestParameters: ApiPropertyRetrieveReques... method apiPropertyTypeCascadingListRaw (line 13313) | async apiPropertyTypeCascadingListRaw(requestParameters: ApiPropertyTy... method apiPropertyTypeCascadingList (line 13354) | async apiPropertyTypeCascadingList(requestParameters: ApiPropertyTypeC... method apiPropertyTypeCreateRaw (line 13362) | async apiPropertyTypeCreateRaw(requestParameters: ApiPropertyTypeCreat... method apiPropertyTypeCreate (line 13394) | async apiPropertyTypeCreate(requestParameters: ApiPropertyTypeCreateRe... method apiPropertyTypeDestroyRaw (line 13402) | async apiPropertyTypeDestroyRaw(requestParameters: ApiPropertyTypeDest... method apiPropertyTypeDestroy (line 13431) | async apiPropertyTypeDestroy(requestParameters: ApiPropertyTypeDestroy... method apiPropertyTypeListRaw (line 13438) | async apiPropertyTypeListRaw(requestParameters: ApiPropertyTypeListReq... method apiPropertyTypeList (line 13472) | async apiPropertyTypeList(requestParameters: ApiPropertyTypeListReques... method apiPropertyTypeNullingListRaw (line 13480) | async apiPropertyTypeNullingListRaw(requestParameters: ApiPropertyType... method apiPropertyTypeNullingList (line 13521) | async apiPropertyTypeNullingList(requestParameters: ApiPropertyTypeNul... method apiPropertyTypePartialUpdateRaw (line 13529) | async apiPropertyTypePartialUpdateRaw(requestParameters: ApiPropertyTy... method apiPropertyTypePartialUpdate (line 13561) | async apiPropertyTypePartialUpdate(requestParameters: ApiPropertyTypeP... method apiPropertyTypeProtectingListRaw (line 13569) | async apiPropertyTypeProtectingListRaw(requestParameters: ApiPropertyT... method apiPropertyTypeProtectingList (line 13610) | async apiPropertyTypeProtectingList(requestParameters: ApiPropertyType... method apiPropertyTypeRetrieveRaw (line 13618) | async apiPropertyTypeRetrieveRaw(requestParameters: ApiPropertyTypeRet... method apiPropertyTypeRetrieve (line 13647) | async apiPropertyTypeRetrieve(requestParameters: ApiPropertyTypeRetrie... method apiPropertyTypeUpdateRaw (line 13655) | async apiPropertyTypeUpdateRaw(requestParameters: ApiPropertyTypeUpdat... method apiPropertyTypeUpdate (line 13694) | async apiPropertyTypeUpdate(requestParameters: ApiPropertyTypeUpdateRe... method apiPropertyUpdateRaw (line 13702) | async apiPropertyUpdateRaw(requestParameters: ApiPropertyUpdateRequest... method apiPropertyUpdate (line 13741) | async apiPropertyUpdate(requestParameters: ApiPropertyUpdateRequest, i... method apiRecipeAipropertiesCreateRaw (line 13749) | async apiRecipeAipropertiesCreateRaw(requestParameters: ApiRecipeAipro... method apiRecipeAipropertiesCreate (line 13792) | async apiRecipeAipropertiesCreate(requestParameters: ApiRecipeAiproper... method apiRecipeBatchUpdateUpdateRaw (line 13800) | async apiRecipeBatchUpdateUpdateRaw(requestParameters: ApiRecipeBatchU... method apiRecipeBatchUpdateUpdate (line 13832) | async apiRecipeBatchUpdateUpdate(requestParameters: ApiRecipeBatchUpda... method apiRecipeBookCascadingListRaw (line 13840) | async apiRecipeBookCascadingListRaw(requestParameters: ApiRecipeBookCa... method apiRecipeBookCascadingList (line 13881) | async apiRecipeBookCascadingList(requestParameters: ApiRecipeBookCasca... method apiRecipeBookCreateRaw (line 13889) | async apiRecipeBookCreateRaw(requestParameters: ApiRecipeBookCreateReq... method apiRecipeBookCreate (line 13921) | async apiRecipeBookCreate(requestParameters: ApiRecipeBookCreateReques... method apiRecipeBookDestroyRaw (line 13929) | async apiRecipeBookDestroyRaw(requestParameters: ApiRecipeBookDestroyR... method apiRecipeBookDestroy (line 13958) | async apiRecipeBookDestroy(requestParameters: ApiRecipeBookDestroyRequ... method apiRecipeBookEntryCreateRaw (line 13965) | async apiRecipeBookEntryCreateRaw(requestParameters: ApiRecipeBookEntr... method apiRecipeBookEntryCreate (line 13997) | async apiRecipeBookEntryCreate(requestParameters: ApiRecipeBookEntryCr... method apiRecipeBookEntryDestroyRaw (line 14005) | async apiRecipeBookEntryDestroyRaw(requestParameters: ApiRecipeBookEnt... method apiRecipeBookEntryDestroy (line 14034) | async apiRecipeBookEntryDestroy(requestParameters: ApiRecipeBookEntryD... method apiRecipeBookEntryListRaw (line 14041) | async apiRecipeBookEntryListRaw(requestParameters: ApiRecipeBookEntryL... method apiRecipeBookEntryList (line 14079) | async apiRecipeBookEntryList(requestParameters: ApiRecipeBookEntryList... method apiRecipeBookEntryPartialUpdateRaw (line 14087) | async apiRecipeBookEntryPartialUpdateRaw(requestParameters: ApiRecipeB... method apiRecipeBookEntryPartialUpdate (line 14119) | async apiRecipeBookEntryPartialUpdate(requestParameters: ApiRecipeBook... method apiRecipeBookEntryRetrieveRaw (line 14127) | async apiRecipeBookEntryRetrieveRaw(requestParameters: ApiRecipeBookEn... method apiRecipeBookEntryRetrieve (line 14156) | async apiRecipeBookEntryRetrieve(requestParameters: ApiRecipeBookEntry... method apiRecipeBookEntryUpdateRaw (line 14164) | async apiRecipeBookEntryUpdateRaw(requestParameters: ApiRecipeBookEntr... method apiRecipeBookEntryUpdate (line 14203) | async apiRecipeBookEntryUpdate(requestParameters: ApiRecipeBookEntryUp... method apiRecipeBookListRaw (line 14211) | async apiRecipeBookListRaw(requestParameters: ApiRecipeBookListRequest... method apiRecipeBookList (line 14265) | async apiRecipeBookList(requestParameters: ApiRecipeBookListRequest = ... method apiRecipeBookNullingListRaw (line 14273) | async apiRecipeBookNullingListRaw(requestParameters: ApiRecipeBookNull... method apiRecipeBookNullingList (line 14314) | async apiRecipeBookNullingList(requestParameters: ApiRecipeBookNulling... method apiRecipeBookPartialUpdateRaw (line 14322) | async apiRecipeBookPartialUpdateRaw(requestParameters: ApiRecipeBookPa... method apiRecipeBookPartialUpdate (line 14354) | async apiRecipeBookPartialUpdate(requestParameters: ApiRecipeBookParti... method apiRecipeBookProtectingListRaw (line 14362) | async apiRecipeBookProtectingListRaw(requestParameters: ApiRecipeBookP... method apiRecipeBookProtectingList (line 14403) | async apiRecipeBookProtectingList(requestParameters: ApiRecipeBookProt... method apiRecipeBookRetrieveRaw (line 14411) | async apiRecipeBookRetrieveRaw(requestParameters: ApiRecipeBookRetriev... method apiRecipeBookRetrieve (line 14440) | async apiRecipeBookRetrieve(requestParameters: ApiRecipeBookRetrieveRe... method apiRecipeBookUpdateRaw (line 14448) | async apiRecipeBookUpdateRaw(requestParameters: ApiRecipeBookUpdateReq... method apiRecipeBookUpdate (line 14487) | async apiRecipeBookUpdate(requestParameters: ApiRecipeBookUpdateReques... method apiRecipeCascadingListRaw (line 14495) | async apiRecipeCascadingListRaw(requestParameters: ApiRecipeCascadingL... method apiRecipeCascadingList (line 14536) | async apiRecipeCascadingList(requestParameters: ApiRecipeCascadingList... method apiRecipeCreateRaw (line 14544) | async apiRecipeCreateRaw(requestParameters: ApiRecipeCreateRequest, in... method apiRecipeCreate (line 14576) | async apiRecipeCreate(requestParameters: ApiRecipeCreateRequest, initO... method apiRecipeDeleteExternalPartialUpdateRaw (line 14584) | async apiRecipeDeleteExternalPartialUpdateRaw(requestParameters: ApiRe... method apiRecipeDeleteExternalPartialUpdate (line 14616) | async apiRecipeDeleteExternalPartialUpdate(requestParameters: ApiRecip... method apiRecipeDestroyRaw (line 14624) | async apiRecipeDestroyRaw(requestParameters: ApiRecipeDestroyRequest, ... method apiRecipeDestroy (line 14653) | async apiRecipeDestroy(requestParameters: ApiRecipeDestroyRequest, ini... method apiRecipeFlatListRaw (line 14660) | async apiRecipeFlatListRaw(initOverrides?: RequestInit | runtime.InitO... method apiRecipeFlatList (line 14682) | async apiRecipeFlatList(initOverrides?: RequestInit | runtime.InitOver... method apiRecipeFromSourceCreateRaw (line 14690) | async apiRecipeFromSourceCreateRaw(requestParameters: ApiRecipeFromSou... method apiRecipeFromSourceCreate (line 14715) | async apiRecipeFromSourceCreate(requestParameters: ApiRecipeFromSource... method apiRecipeImageUpdateRaw (line 14723) | async apiRecipeImageUpdateRaw(requestParameters: ApiRecipeImageUpdateR... method apiRecipeImageUpdate (line 14775) | async apiRecipeImageUpdate(requestParameters: ApiRecipeImageUpdateRequ... method apiRecipeImportCreateRaw (line 14783) | async apiRecipeImportCreateRaw(requestParameters: ApiRecipeImportCreat... method apiRecipeImportCreate (line 14815) | async apiRecipeImportCreate(requestParameters: ApiRecipeImportCreateRe... method apiRecipeImportDestroyRaw (line 14823) | async apiRecipeImportDestroyRaw(requestParameters: ApiRecipeImportDest... method apiRecipeImportDestroy (line 14852) | async apiRecipeImportDestroy(requestParameters: ApiRecipeImportDestroy... method apiRecipeImportImportAllCreateRaw (line 14859) | async apiRecipeImportImportAllCreateRaw(requestParameters: ApiRecipeIm... method apiRecipeImportImportAllCreate (line 14891) | async apiRecipeImportImportAllCreate(requestParameters: ApiRecipeImpor... method apiRecipeImportImportRecipeCreateRaw (line 14899) | async apiRecipeImportImportRecipeCreateRaw(requestParameters: ApiRecip... method apiRecipeImportImportRecipeCreate (line 14938) | async apiRecipeImportImportRecipeCreate(requestParameters: ApiRecipeIm... method apiRecipeImportListRaw (line 14946) | async apiRecipeImportListRaw(requestParameters: ApiRecipeImportListReq... method apiRecipeImportList (line 14976) | async apiRecipeImportList(requestParameters: ApiRecipeImportListReques... method apiRecipeImportPartialUpdateRaw (line 14984) | async apiRecipeImportPartialUpdateRaw(requestParameters: ApiRecipeImpo... method apiRecipeImportPartialUpdate (line 15016) | async apiRecipeImportPartialUpdate(requestParameters: ApiRecipeImportP... method apiRecipeImportRetrieveRaw (line 15024) | async apiRecipeImportRetrieveRaw(requestParameters: ApiRecipeImportRet... method apiRecipeImportRetrieve (line 15053) | async apiRecipeImportRetrieve(requestParameters: ApiRecipeImportRetrie... method apiRecipeImportUpdateRaw (line 15061) | async apiRecipeImportUpdateRaw(requestParameters: ApiRecipeImportUpdat... method apiRecipeImportUpdate (line 15100) | async apiRecipeImportUpdate(requestParameters: ApiRecipeImportUpdateRe... method apiRecipeListRaw (line 15108) | async apiRecipeListRaw(requestParameters: ApiRecipeListRequest, initOv... method apiRecipeList (line 15306) | async apiRecipeList(requestParameters: ApiRecipeListRequest = {}, init... method apiRecipeNullingListRaw (line 15314) | async apiRecipeNullingListRaw(requestParameters: ApiRecipeNullingListR... method apiRecipeNullingList (line 15355) | async apiRecipeNullingList(requestParameters: ApiRecipeNullingListRequ... method apiRecipePartialUpdateRaw (line 15363) | async apiRecipePartialUpdateRaw(requestParameters: ApiRecipePartialUpd... method apiRecipePartialUpdate (line 15395) | async apiRecipePartialUpdate(requestParameters: ApiRecipePartialUpdate... method apiRecipeProtectingListRaw (line 15403) | async apiRecipeProtectingListRaw(requestParameters: ApiRecipeProtectin... method apiRecipeProtectingList (line 15444) | async apiRecipeProtectingList(requestParameters: ApiRecipeProtectingLi... method apiRecipeRelatedListRaw (line 15452) | async apiRecipeRelatedListRaw(requestParameters: ApiRecipeRelatedListR... method apiRecipeRelatedList (line 15481) | async apiRecipeRelatedList(requestParameters: ApiRecipeRelatedListRequ... method apiRecipeRetrieveRaw (line 15489) | async apiRecipeRetrieveRaw(requestParameters: ApiRecipeRetrieveRequest... method apiRecipeRetrieve (line 15522) | async apiRecipeRetrieve(requestParameters: ApiRecipeRetrieveRequest, i... method apiRecipeShoppingUpdateRaw (line 15530) | async apiRecipeShoppingUpdateRaw(requestParameters: ApiRecipeShoppingU... method apiRecipeShoppingUpdate (line 15569) | async apiRecipeShoppingUpdate(requestParameters: ApiRecipeShoppingUpda... method apiRecipeUpdateRaw (line 15577) | async apiRecipeUpdateRaw(requestParameters: ApiRecipeUpdateRequest, in... method apiRecipeUpdate (line 15616) | async apiRecipeUpdate(requestParameters: ApiRecipeUpdateRequest, initO... method apiResetFoodInheritanceCreateRaw (line 15624) | async apiResetFoodInheritanceCreateRaw(initOverrides?: RequestInit | r... method apiResetFoodInheritanceCreate (line 15646) | async apiResetFoodInheritanceCreate(initOverrides?: RequestInit | runt... method apiSearchFieldsListRaw (line 15653) | async apiSearchFieldsListRaw(initOverrides?: RequestInit | runtime.Ini... method apiSearchFieldsList (line 15675) | async apiSearchFieldsList(initOverrides?: RequestInit | runtime.InitOv... method apiSearchFieldsRetrieveRaw (line 15683) | async apiSearchFieldsRetrieveRaw(requestParameters: ApiSearchFieldsRet... method apiSearchFieldsRetrieve (line 15712) | async apiSearchFieldsRetrieve(requestParameters: ApiSearchFieldsRetrie... method apiSearchPreferenceListRaw (line 15720) | async apiSearchPreferenceListRaw(initOverrides?: RequestInit | runtime... method apiSearchPreferenceList (line 15742) | async apiSearchPreferenceList(initOverrides?: RequestInit | runtime.In... method apiSearchPreferencePartialUpdateRaw (line 15750) | async apiSearchPreferencePartialUpdateRaw(requestParameters: ApiSearch... method apiSearchPreferencePartialUpdate (line 15782) | async apiSearchPreferencePartialUpdate(requestParameters: ApiSearchPre... method apiSearchPreferenceRetrieveRaw (line 15790) | async apiSearchPreferenceRetrieveRaw(requestParameters: ApiSearchPrefe... method apiSearchPreferenceRetrieve (line 15819) | async apiSearchPreferenceRetrieve(requestParameters: ApiSearchPreferen... method apiServerSettingsCurrentRetrieveRaw (line 15826) | async apiServerSettingsCurrentRetrieveRaw(initOverrides?: RequestInit ... method apiServerSettingsCurrentRetrieve (line 15847) | async apiServerSettingsCurrentRetrieve(initOverrides?: RequestInit | r... method apiShareLinkRetrieveRaw (line 15854) | async apiShareLinkRetrieveRaw(requestParameters: ApiShareLinkRetrieveR... method apiShareLinkRetrieve (line 15882) | async apiShareLinkRetrieve(requestParameters: ApiShareLinkRetrieveRequ... method apiShoppingListCascadingListRaw (line 15890) | async apiShoppingListCascadingListRaw(requestParameters: ApiShoppingLi... method apiShoppingListCascadingList (line 15931) | async apiShoppingListCascadingList(requestParameters: ApiShoppingListC... method apiShoppingListCreateRaw (line 15939) | async apiShoppingListCreateRaw(requestParameters: ApiShoppingListCreat... method apiShoppingListCreate (line 15964) | async apiShoppingListCreate(requestParameters: ApiShoppingListCreateRe... method apiShoppingListDestroyRaw (line 15972) | async apiShoppingListDestroyRaw(requestParameters: ApiShoppingListDest... method apiShoppingListDestroy (line 16001) | async apiShoppingListDestroy(requestParameters: ApiShoppingListDestroy... method apiShoppingListEntryBulkCreateRaw (line 16008) | async apiShoppingListEntryBulkCreateRaw(requestParameters: ApiShopping... method apiShoppingListEntryBulkCreate (line 16040) | async apiShoppingListEntryBulkCreate(requestParameters: ApiShoppingLis... method apiShoppingListEntryCreateRaw (line 16048) | async apiShoppingListEntryCreateRaw(requestParameters: ApiShoppingList... method apiShoppingListEntryCreate (line 16080) | async apiShoppingListEntryCreate(requestParameters: ApiShoppingListEnt... method apiShoppingListEntryDestroyRaw (line 16088) | async apiShoppingListEntryDestroyRaw(requestParameters: ApiShoppingLis... method apiShoppingListEntryDestroy (line 16117) | async apiShoppingListEntryDestroy(requestParameters: ApiShoppingListEn... method apiShoppingListEntryListRaw (line 16124) | async apiShoppingListEntryListRaw(requestParameters: ApiShoppingListEn... method apiShoppingListEntryList (line 16162) | async apiShoppingListEntryList(requestParameters: ApiShoppingListEntry... method apiShoppingListEntryPartialUpdateRaw (line 16170) | async apiShoppingListEntryPartialUpdateRaw(requestParameters: ApiShopp... method apiShoppingListEntryPartialUpdate (line 16202) | async apiShoppingListEntryPartialUpdate(requestParameters: ApiShopping... method apiShoppingListEntryRetrieveRaw (line 16210) | async apiShoppingListEntryRetrieveRaw(requestParameters: ApiShoppingLi... method apiShoppingListEntryRetrieve (line 16239) | async apiShoppingListEntryRetrieve(requestParameters: ApiShoppingListE... method apiShoppingListEntryUpdateRaw (line 16247) | async apiShoppingListEntryUpdateRaw(requestParameters: ApiShoppingList... method apiShoppingListEntryUpdate (line 16286) | async apiShoppingListEntryUpdate(requestParameters: ApiShoppingListEnt... method apiShoppingListListRaw (line 16294) | async apiShoppingListListRaw(requestParameters: ApiShoppingListListReq... method apiShoppingListList (line 16324) | async apiShoppingListList(requestParameters: ApiShoppingListListReques... method apiShoppingListNullingListRaw (line 16332) | async apiShoppingListNullingListRaw(requestParameters: ApiShoppingList... method apiShoppingListNullingList (line 16373) | async apiShoppingListNullingList(requestParameters: ApiShoppingListNul... method apiShoppingListPartialUpdateRaw (line 16381) | async apiShoppingListPartialUpdateRaw(requestParameters: ApiShoppingLi... method apiShoppingListPartialUpdate (line 16413) | async apiShoppingListPartialUpdate(requestParameters: ApiShoppingListP... method apiShoppingListProtectingListRaw (line 16421) | async apiShoppingListProtectingListRaw(requestParameters: ApiShoppingL... method apiShoppingListProtectingList (line 16462) | async apiShoppingListProtectingList(requestParameters: ApiShoppingList... method apiShoppingListRecipeBulkCreateEntriesCreateRaw (line 16470) | async apiShoppingListRecipeBulkCreateEntriesCreateRaw(requestParameter... method apiShoppingListRecipeBulkCreateEntriesCreate (line 16509) | async apiShoppingListRecipeBulkCreateEntriesCreate(requestParameters: ... method apiShoppingListRecipeCreateRaw (line 16517) | async apiShoppingListRecipeCreateRaw(requestParameters: ApiShoppingLis... method apiShoppingListRecipeCreate (line 16549) | async apiShoppingListRecipeCreate(requestParameters: ApiShoppingListRe... method apiShoppingListRecipeDestroyRaw (line 16557) | async apiShoppingListRecipeDestroyRaw(requestParameters: ApiShoppingLi... method apiShoppingListRecipeDestroy (line 16586) | async apiShoppingListRecipeDestroy(requestParameters: ApiShoppingListR... method apiShoppingListRecipeListRaw (line 16593) | async apiShoppingListRecipeListRaw(requestParameters: ApiShoppingListR... method apiShoppingListRecipeList (line 16627) | async apiShoppingListRecipeList(requestParameters: ApiShoppingListReci... method apiShoppingListRecipePartialUpdateRaw (line 16635) | async apiShoppingListRecipePartialUpdateRaw(requestParameters: ApiShop... method apiShoppingListRecipePartialUpdate (line 16667) | async apiShoppingListRecipePartialUpdate(requestParameters: ApiShoppin... method apiShoppingListRecipeRetrieveRaw (line 16675) | async apiShoppingListRecipeRetrieveRaw(requestParameters: ApiShoppingL... method apiShoppingListRecipeRetrieve (line 16704) | async apiShoppingListRecipeRetrieve(requestParameters: ApiShoppingList... method apiShoppingListRecipeUpdateRaw (line 16712) | async apiShoppingListRecipeUpdateRaw(requestParameters: ApiShoppingLis... method apiShoppingListRecipeUpdate (line 16751) | async apiShoppingListRecipeUpdate(requestParameters: ApiShoppingListRe... method apiShoppingListRetrieveRaw (line 16759) | async apiShoppingListRetrieveRaw(requestParameters: ApiShoppingListRet... method apiShoppingListRetrieve (line 16788) | async apiShoppingListRetrieve(requestParameters: ApiShoppingListRetrie... method apiShoppingListUpdateRaw (line 16796) | async apiShoppingListUpdateRaw(requestParameters: ApiShoppingListUpdat... method apiShoppingListUpdate (line 16828) | async apiShoppingListUpdate(requestParameters: ApiShoppingListUpdateRe... method apiSpaceCreateRaw (line 16836) | async apiSpaceCreateRaw(requestParameters: ApiSpaceCreateRequest, init... method apiSpaceCreate (line 16861) | async apiSpaceCreate(requestParameters: ApiSpaceCreateRequest = {}, in... method apiSpaceCurrentRetrieveRaw (line 16869) | async apiSpaceCurrentRetrieveRaw(initOverrides?: RequestInit | runtime... method apiSpaceCurrentRetrieve (line 16891) | async apiSpaceCurrentRetrieve(initOverrides?: RequestInit | runtime.In... method apiSpaceListRaw (line 16899) | async apiSpaceListRaw(requestParameters: ApiSpaceListRequest, initOver... method apiSpaceList (line 16929) | async apiSpaceList(requestParameters: ApiSpaceListRequest = {}, initOv... method apiSpacePartialUpdateRaw (line 16937) | async apiSpacePartialUpdateRaw(requestParameters: ApiSpacePartialUpdat... method apiSpacePartialUpdate (line 16969) | async apiSpacePartialUpdate(requestParameters: ApiSpacePartialUpdateRe... method apiSpaceRetrieveRaw (line 16977) | async apiSpaceRetrieveRaw(requestParameters: ApiSpaceRetrieveRequest, ... method apiSpaceRetrieve (line 17006) | async apiSpaceRetrieve(requestParameters: ApiSpaceRetrieveRequest, ini... method apiSpaceUpdateRaw (line 17014) | async apiSpaceUpdateRaw(requestParameters: ApiSpaceUpdateRequest, init... method apiSpaceUpdate (line 17046) | async apiSpaceUpdate(requestParameters: ApiSpaceUpdateRequest, initOve... method apiStepCreateRaw (line 17054) | async apiStepCreateRaw(requestParameters: ApiStepCreateRequest, initOv... method apiStepCreate (line 17086) | async apiStepCreate(requestParameters: ApiStepCreateRequest, initOverr... method apiStepDestroyRaw (line 17094) | async apiStepDestroyRaw(requestParameters: ApiStepDestroyRequest, init... method apiStepDestroy (line 17123) | async apiStepDestroy(requestParameters: ApiStepDestroyRequest, initOve... method apiStepListRaw (line 17130) | async apiStepListRaw(requestParameters: ApiStepListRequest, initOverri... method apiStepList (line 17168) | async apiStepList(requestParameters: ApiStepListRequest = {}, initOver... method apiStepPartialUpdateRaw (line 17176) | async apiStepPartialUpdateRaw(requestParameters: ApiStepPartialUpdateR... method apiStepPartialUpdate (line 17208) | async apiStepPartialUpdate(requestParameters: ApiStepPartialUpdateRequ... method apiStepRetrieveRaw (line 17216) | async apiStepRetrieveRaw(requestParameters: ApiStepRetrieveRequest, in... method apiStepRetrieve (line 17245) | async apiStepRetrieve(requestParameters: ApiStepRetrieveRequest, initO... method apiStepUpdateRaw (line 17253) | async apiStepUpdateRaw(requestParameters: ApiStepUpdateRequest, initOv... method apiStepUpdate (line 17292) | async apiStepUpdate(requestParameters: ApiStepUpdateRequest, initOverr... method apiStorageCascadingListRaw (line 17300) | async apiStorageCascadingListRaw(requestParameters: ApiStorageCascadin... method apiStorageCascadingList (line 17341) | async apiStorageCascadingList(requestParameters: ApiStorageCascadingLi... method apiStorageCreateRaw (line 17349) | async apiStorageCreateRaw(requestParameters: ApiStorageCreateRequest, ... method apiStorageCreate (line 17381) | async apiStorageCreate(requestParameters: ApiStorageCreateRequest, ini... method apiStorageDestroyRaw (line 17389) | async apiStorageDestroyRaw(requestParameters: ApiStorageDestroyRequest... method apiStorageDestroy (line 17418) | async apiStorageDestroy(requestParameters: ApiStorageDestroyRequest, i... method apiStorageListRaw (line 17425) | async apiStorageListRaw(requestParameters: ApiStorageListRequest, init... method apiStorageList (line 17455) | async apiStorageList(requestParameters: ApiStorageListRequest = {}, in... method apiStorageNullingListRaw (line 17463) | async apiStorageNullingListRaw(requestParameters: ApiStorageNullingLis... method apiStorageNullingList (line 17504) | async apiStorageNullingList(requestParameters: ApiStorageNullingListRe... method apiStoragePartialUpdateRaw (line 17512) | async apiStoragePartialUpdateRaw(requestParameters: ApiStoragePartialU... method apiStoragePartialUpdate (line 17544) | async apiStoragePartialUpdate(requestParameters: ApiStoragePartialUpda... method apiStorageProtectingListRaw (line 17552) | async apiStorageProtectingListRaw(requestParameters: ApiStorageProtect... method apiStorageProtectingList (line 17593) | async apiStorageProtectingList(requestParameters: ApiStorageProtecting... method apiStorageRetrieveRaw (line 17601) | async apiStorageRetrieveRaw(requestParameters: ApiStorageRetrieveReque... method apiStorageRetrieve (line 17630) | async apiStorageRetrieve(requestParameters: ApiStorageRetrieveRequest,... method apiStorageUpdateRaw (line 17638) | async apiStorageUpdateRaw(requestParameters: ApiStorageUpdateRequest, ... method apiStorageUpdate (line 17677) | async apiStorageUpdate(requestParameters: ApiStorageUpdateRequest, ini... method apiSupermarketCascadingListRaw (line 17685) | async apiSupermarketCascadingListRaw(requestParameters: ApiSupermarket... method apiSupermarketCascadingList (line 17726) | async apiSupermarketCascadingList(requestParameters: ApiSupermarketCas... method apiSupermarketCategoryCascadingListRaw (line 17734) | async apiSupermarketCategoryCascadingListRaw(requestParameters: ApiSup... method apiSupermarketCategoryCascadingList (line 17775) | async apiSupermarketCategoryCascadingList(requestParameters: ApiSuperm... method apiSupermarketCategoryCreateRaw (line 17783) | async apiSupermarketCategoryCreateRaw(requestParameters: ApiSupermarke... method apiSupermarketCategoryCreate (line 17815) | async apiSupermarketCategoryCreate(requestParameters: ApiSupermarketCa... method apiSupermarketCategoryDestroyRaw (line 17823) | async apiSupermarketCategoryDestroyRaw(requestParameters: ApiSupermark... method apiSupermarketCategoryDestroy (line 17852) | async apiSupermarketCategoryDestroy(requestParameters: ApiSupermarketC... method apiSupermarketCategoryListRaw (line 17859) | async apiSupermarketCategoryListRaw(requestParameters: ApiSupermarketC... method apiSupermarketCategoryList (line 17905) | async apiSupermarketCategoryList(requestParameters: ApiSupermarketCate... method apiSupermarketCategoryMergeUpdateRaw (line 17913) | async apiSupermarketCategoryMergeUpdateRaw(requestParameters: ApiSuper... method apiSupermarketCategoryMergeUpdate (line 17959) | async apiSupermarketCategoryMergeUpdate(requestParameters: ApiSupermar... method apiSupermarketCategoryNullingListRaw (line 17967) | async apiSupermarketCategoryNullingListRaw(requestParameters: ApiSuper... method apiSupermarketCategoryNullingList (line 18008) | async apiSupermarketCategoryNullingList(requestParameters: ApiSupermar... method apiSupermarketCategoryPartialUpdateRaw (line 18016) | async apiSupermarketCategoryPartialUpdateRaw(requestParameters: ApiSup... method apiSupermarketCategoryPartialUpdate (line 18048) | async apiSupermarketCategoryPartialUpdate(requestParameters: ApiSuperm... method apiSupermarketCategoryProtectingListRaw (line 18056) | async apiSupermarketCategoryProtectingListRaw(requestParameters: ApiSu... method apiSupermarketCategoryProtectingList (line 18097) | async apiSupermarketCategoryProtectingList(requestParameters: ApiSuper... method apiSupermarketCategoryRelationCreateRaw (line 18105) | async apiSupermarketCategoryRelationCreateRaw(requestParameters: ApiSu... method apiSupermarketCategoryRelationCreate (line 18137) | async apiSupermarketCategoryRelationCreate(requestParameters: ApiSuper... method apiSupermarketCategoryRelationDestroyRaw (line 18145) | async apiSupermarketCategoryRelationDestroyRaw(requestParameters: ApiS... method apiSupermarketCategoryRelationDestroy (line 18174) | async apiSupermarketCategoryRelationDestroy(requestParameters: ApiSupe... method apiSupermarketCategoryRelationListRaw (line 18181) | async apiSupermarketCategoryRelationListRaw(requestParameters: ApiSupe... method apiSupermarketCategoryRelationList (line 18227) | async apiSupermarketCategoryRelationList(requestParameters: ApiSuperma... method apiSupermarketCategoryRelationPartialUpdateRaw (line 18235) | async apiSupermarketCategoryRelationPartialUpdateRaw(requestParameters... method apiSupermarketCategoryRelationPartialUpdate (line 18267) | async apiSupermarketCategoryRelationPartialUpdate(requestParameters: A... method apiSupermarketCategoryRelationRetrieveRaw (line 18275) | async apiSupermarketCategoryRelationRetrieveRaw(requestParameters: Api... method apiSupermarketCategoryRelationRetrieve (line 18304) | async apiSupermarketCategoryRelationRetrieve(requestParameters: ApiSup... method apiSupermarketCategoryRelationUpdateRaw (line 18312) | async apiSupermarketCategoryRelationUpdateRaw(requestParameters: ApiSu... method apiSupermarketCategoryRelationUpdate (line 18351) | async apiSupermarketCategoryRelationUpdate(requestParameters: ApiSuper... method apiSupermarketCategoryRetrieveRaw (line 18359) | async apiSupermarketCategoryRetrieveRaw(requestParameters: ApiSupermar... method apiSupermarketCategoryRetrieve (line 18388) | async apiSupermarketCategoryRetrieve(requestParameters: ApiSupermarket... method apiSupermarketCategoryUpdateRaw (line 18396) | async apiSupermarketCategoryUpdateRaw(requestParameters: ApiSupermarke... method apiSupermarketCategoryUpdate (line 18435) | async apiSupermarketCategoryUpdate(requestParameters: ApiSupermarketCa... method apiSupermarketCreateRaw (line 18443) | async apiSupermarketCreateRaw(requestParameters: ApiSupermarketCreateR... method apiSupermarketCreate (line 18475) | async apiSupermarketCreate(requestParameters: ApiSupermarketCreateRequ... method apiSupermarketDestroyRaw (line 18483) | async apiSupermarketDestroyRaw(requestParameters: ApiSupermarketDestro... method apiSupermarketDestroy (line 18512) | async apiSupermarketDestroy(requestParameters: ApiSupermarketDestroyRe... method apiSupermarketListRaw (line 18519) | async apiSupermarketListRaw(requestParameters: ApiSupermarketListReque... method apiSupermarketList (line 18565) | async apiSupermarketList(requestParameters: ApiSupermarketListRequest ... method apiSupermarketNullingListRaw (line 18573) | async apiSupermarketNullingListRaw(requestParameters: ApiSupermarketNu... method apiSupermarketNullingList (line 18614) | async apiSupermarketNullingList(requestParameters: ApiSupermarketNulli... method apiSupermarketPartialUpdateRaw (line 18622) | async apiSupermarketPartialUpdateRaw(requestParameters: ApiSupermarket... method apiSupermarketPartialUpdate (line 18654) | async apiSupermarketPartialUpdate(requestParameters: ApiSupermarketPar... method apiSupermarketProtectingListRaw (line 18662) | async apiSupermarketProtectingListRaw(requestParameters: ApiSupermarke... method apiSupermarketProtectingList (line 18703) | async apiSupermarketProtectingList(requestParameters: ApiSupermarketPr... method apiSupermarketRetrieveRaw (line 18711) | async apiSupermarketRetrieveRaw(requestParameters: ApiSupermarketRetri... method apiSupermarketRetrieve (line 18740) | async apiSupermarketRetrieve(requestParameters: ApiSupermarketRetrieve... method apiSupermarketUpdateRaw (line 18748) | async apiSupermarketUpdateRaw(requestParameters: ApiSupermarketUpdateR... method apiSupermarketUpdate (line 18787) | async apiSupermarketUpdate(requestParameters: ApiSupermarketUpdateRequ... method apiSwitchActiveSpaceRetrieveRaw (line 18795) | async apiSwitchActiveSpaceRetrieveRaw(requestParameters: ApiSwitchActi... method apiSwitchActiveSpaceRetrieve (line 18824) | async apiSwitchActiveSpaceRetrieve(requestParameters: ApiSwitchActiveS... method apiSyncCascadingListRaw (line 18831) | async apiSyncCascadingListRaw(requestParameters: ApiSyncCascadingListR... method apiSyncCascadingList (line 18872) | async apiSyncCascadingList(requestParameters: ApiSyncCascadingListRequ... method apiSyncCreateRaw (line 18880) | async apiSyncCreateRaw(requestParameters: ApiSyncCreateRequest, initOv... method apiSyncCreate (line 18912) | async apiSyncCreate(requestParameters: ApiSyncCreateRequest, initOverr... method apiSyncDestroyRaw (line 18920) | async apiSyncDestroyRaw(requestParameters: ApiSyncDestroyRequest, init... method apiSyncDestroy (line 18949) | async apiSyncDestroy(requestParameters: ApiSyncDestroyRequest, initOve... method apiSyncListRaw (line 18956) | async apiSyncListRaw(requestParameters: ApiSyncListRequest, initOverri... method apiSyncList (line 18986) | async apiSyncList(requestParameters: ApiSyncListRequest = {}, initOver... method apiSyncLogListRaw (line 18994) | async apiSyncLogListRaw(requestParameters: ApiSyncLogListRequest, init... method apiSyncLogList (line 19024) | async apiSyncLogList(requestParameters: ApiSyncLogListRequest = {}, in... method apiSyncLogRetrieveRaw (line 19032) | async apiSyncLogRetrieveRaw(requestParameters: ApiSyncLogRetrieveReque... method apiSyncLogRetrieve (line 19061) | async apiSyncLogRetrieve(requestParameters: ApiSyncLogRetrieveRequest,... method apiSyncNullingListRaw (line 19069) | async apiSyncNullingListRaw(requestParameters: ApiSyncNullingListReque... method apiSyncNullingList (line 19110) | async apiSyncNullingList(requestParameters: ApiSyncNullingListRequest,... method apiSyncPartialUpdateRaw (line 19118) | async apiSyncPartialUpdateRaw(requestParameters: ApiSyncPartialUpdateR... method apiSyncPartialUpdate (line 19150) | async apiSyncPartialUpdate(requestParameters: ApiSyncPartialUpdateRequ... method apiSyncProtectingListRaw (line 19158) | async apiSyncProtectingListRaw(requestParameters: ApiSyncProtectingLis... method apiSyncProtectingList (line 19199) | async apiSyncProtectingList(requestParameters: ApiSyncProtectingListRe... method apiSyncQuerySyncedFolderCreateRaw (line 19207) | async apiSyncQuerySyncedFolderCreateRaw(requestParameters: ApiSyncQuer... method apiSyncQuerySyncedFolderCreate (line 19246) | async apiSyncQuerySyncedFolderCreate(requestParameters: ApiSyncQuerySy... method apiSyncRetrieveRaw (line 19254) | async apiSyncRetrieveRaw(requestParameters: ApiSyncRetrieveRequest, in... method apiSyncRetrieve (line 19283) | async apiSyncRetrieve(requestParameters: ApiSyncRetrieveRequest, initO... method apiSyncUpdateRaw (line 19291) | async apiSyncUpdateRaw(requestParameters: ApiSyncUpdateRequest, initOv... method apiSyncUpdate (line 19330) | async apiSyncUpdate(requestParameters: ApiSyncUpdateRequest, initOverr... method apiUnitCascadingListRaw (line 19338) | async apiUnitCascadingListRaw(requestParameters: ApiUnitCascadingListR... method apiUnitCascadingList (line 19379) | async apiUnitCascadingList(requestParameters: ApiUnitCascadingListRequ... method apiUnitConversionCreateRaw (line 19387) | async apiUnitConversionCreateRaw(requestParameters: ApiUnitConversionC... method apiUnitConversionCreate (line 19419) | async apiUnitConversionCreate(requestParameters: ApiUnitConversionCrea... method apiUnitConversionDestroyRaw (line 19427) | async apiUnitConversionDestroyRaw(requestParameters: ApiUnitConversion... method apiUnitConversionDestroy (line 19456) | async apiUnitConversionDestroy(requestParameters: ApiUnitConversionDes... method apiUnitConversionListRaw (line 19463) | async apiUnitConversionListRaw(requestParameters: ApiUnitConversionLis... method apiUnitConversionList (line 19501) | async apiUnitConversionList(requestParameters: ApiUnitConversionListRe... method apiUnitConversionPartialUpdateRaw (line 19509) | async apiUnitConversionPartialUpdateRaw(requestParameters: ApiUnitConv... method apiUnitConversionPartialUpdate (line 19541) | async apiUnitConversionPartialUpdate(requestParameters: ApiUnitConvers... method apiUnitConversionRetrieveRaw (line 19549) | async apiUnitConversionRetrieveRaw(requestParameters: ApiUnitConversio... method apiUnitConversionRetrieve (line 19578) | async apiUnitConversionRetrieve(requestParameters: ApiUnitConversionRe... method apiUnitConversionUpdateRaw (line 19586) | async apiUnitConversionUpdateRaw(requestParameters: ApiUnitConversionU... method apiUnitConversionUpdate (line 19625) | async apiUnitConversionUpdate(requestParameters: ApiUnitConversionUpda... method apiUnitCreateRaw (line 19633) | async apiUnitCreateRaw(requestParameters: ApiUnitCreateRequest, initOv... method apiUnitCreate (line 19665) | async apiUnitCreate(requestParameters: ApiUnitCreateRequest, initOverr... method apiUnitDestroyRaw (line 19673) | async apiUnitDestroyRaw(requestParameters: ApiUnitDestroyRequest, init... method apiUnitDestroy (line 19702) | async apiUnitDestroy(requestParameters: ApiUnitDestroyRequest, initOve... method apiUnitListRaw (line 19709) | async apiUnitListRaw(requestParameters: ApiUnitListRequest, initOverri... method apiUnitList (line 19755) | async apiUnitList(requestParameters: ApiUnitListRequest = {}, initOver... method apiUnitMergeUpdateRaw (line 19763) | async apiUnitMergeUpdateRaw(requestParameters: ApiUnitMergeUpdateReque... method apiUnitMergeUpdate (line 19809) | async apiUnitMergeUpdate(requestParameters: ApiUnitMergeUpdateRequest,... method apiUnitNullingListRaw (line 19817) | async apiUnitNullingListRaw(requestParameters: ApiUnitNullingListReque... method apiUnitNullingList (line 19858) | async apiUnitNullingList(requestParameters: ApiUnitNullingListRequest,... method apiUnitPartialUpdateRaw (line 19866) | async apiUnitPartialUpdateRaw(requestParameters: ApiUnitPartialUpdateR... method apiUnitPartialUpdate (line 19898) | async apiUnitPartialUpdate(requestParameters: ApiUnitPartialUpdateRequ... method apiUnitProtectingListRaw (line 19906) | async apiUnitProtectingListRaw(requestParameters: ApiUnitProtectingLis... method apiUnitProtectingList (line 19947) | async apiUnitProtectingList(requestParameters: ApiUnitProtectingListRe... method apiUnitRetrieveRaw (line 19955) | async apiUnitRetrieveRaw(requestParameters: ApiUnitRetrieveRequest, in... method apiUnitRetrieve (line 19984) | async apiUnitRetrieve(requestParameters: ApiUnitRetrieveRequest, initO... method apiUnitUpdateRaw (line 19992) | async apiUnitUpdateRaw(requestParameters: ApiUnitUpdateRequest, initOv... method apiUnitUpdate (line 20031) | async apiUnitUpdate(requestParameters: ApiUnitUpdateRequest, initOverr... method apiUserFileCascadingListRaw (line 20039) | async apiUserFileCascadingListRaw(requestParameters: ApiUserFileCascad... method apiUserFileCascadingList (line 20080) | async apiUserFileCascadingList(requestParameters: ApiUserFileCascading... method apiUserFileCreateRaw (line 20088) | async apiUserFileCreateRaw(requestParameters: ApiUserFileCreateRequest... method apiUserFileCreate (line 20199) | async apiUserFileCreate(requestParameters: ApiUserFileCreateRequest, i... method apiUserFileDestroyRaw (line 20207) | async apiUserFileDestroyRaw(requestParameters: ApiUserFileDestroyReque... method apiUserFileDestroy (line 20236) | async apiUserFileDestroy(requestParameters: ApiUserFileDestroyRequest,... method apiUserFileListRaw (line 20243) | async apiUserFileListRaw(requestParameters: ApiUserFileListRequest, in... method apiUserFileList (line 20289) | async apiUserFileList(requestParameters: ApiUserFileListRequest = {}, ... method apiUserFileNullingListRaw (line 20297) | async apiUserFileNullingListRaw(requestParameters: ApiUserFileNullingL... method apiUserFileNullingList (line 20338) | async apiUserFileNullingList(requestParameters: ApiUserFileNullingList... method apiUserFilePartialUpdateRaw (line 20346) | async apiUserFilePartialUpdateRaw(requestParameters: ApiUserFilePartia... method apiUserFilePartialUpdate (line 20422) | async apiUserFilePartialUpdate(requestParameters: ApiUserFilePartialUp... method apiUserFileProtectingListRaw (line 20430) | async apiUserFileProtectingListRaw(requestParameters: ApiUserFileProte... method apiUserFileProtectingList (line 20471) | async apiUserFileProtectingList(requestParameters: ApiUserFileProtecti... method apiUserFileRetrieveRaw (line 20479) | async apiUserFileRetrieveRaw(requestParameters: ApiUserFileRetrieveReq... method apiUserFileRetrieve (line 20508) | async apiUserFileRetrieve(requestParameters: ApiUserFileRetrieveReques... method apiUserFileUpdateRaw (line 20516) | async apiUserFileUpdateRaw(requestParameters: ApiUserFileUpdateRequest... method apiUserFileUpdate (line 20634) | async apiUserFileUpdate(requestParameters: ApiUserFileUpdateRequest, i... method apiUserListRaw (line 20642) | async apiUserListRaw(requestParameters: ApiUserListRequest, initOverri... method apiUserList (line 20668) | async apiUserList(requestParameters: ApiUserListRequest = {}, initOver... method apiUserPartialUpdateRaw (line 20676) | async apiUserPartialUpdateRaw(requestParameters: ApiUserPartialUpdateR... method apiUserPartialUpdate (line 20708) | async apiUserPartialUpdate(requestParameters: ApiUserPartialUpdateRequ... method apiUserPreferenceListRaw (line 20716) | async apiUserPreferenceListRaw(initOverrides?: RequestInit | runtime.I... method apiUserPreferenceList (line 20738) | async apiUserPreferenceList(initOverrides?: RequestInit | runtime.Init... method apiUserPreferencePartialUpdateRaw (line 20746) | async apiUserPreferencePartialUpdateRaw(requestParameters: ApiUserPref... method apiUserPreferencePartialUpdate (line 20778) | async apiUserPreferencePartialUpdate(requestParameters: ApiUserPrefere... method apiUserPreferenceRetrieveRaw (line 20786) | async apiUserPreferenceRetrieveRaw(requestParameters: ApiUserPreferenc... method apiUserPreferenceRetrieve (line 20815) | async apiUserPreferenceRetrieve(requestParameters: ApiUserPreferenceRe... method apiUserRetrieveRaw (line 20823) | async apiUserRetrieveRaw(requestParameters: ApiUserRetrieveRequest, in... method apiUserRetrieve (line 20852) | async apiUserRetrieve(requestParameters: ApiUserRetrieveRequest, initO... method apiUserSpaceAllPersonalListRaw (line 20860) | async apiUserSpaceAllPersonalListRaw(initOverrides?: RequestInit | run... method apiUserSpaceAllPersonalList (line 20882) | async apiUserSpaceAllPersonalList(initOverrides?: RequestInit | runtim... method apiUserSpaceDestroyRaw (line 20890) | async apiUserSpaceDestroyRaw(requestParameters: ApiUserSpaceDestroyReq... method apiUserSpaceDestroy (line 20919) | async apiUserSpaceDestroy(requestParameters: ApiUserSpaceDestroyReques... method apiUserSpaceListRaw (line 20926) | async apiUserSpaceListRaw(requestParameters: ApiUserSpaceListRequest, ... method apiUserSpaceList (line 20960) | async apiUserSpaceList(requestParameters: ApiUserSpaceListRequest = {}... method apiUserSpacePartialUpdateRaw (line 20968) | async apiUserSpacePartialUpdateRaw(requestParameters: ApiUserSpacePart... method apiUserSpacePartialUpdate (line 21000) | async apiUserSpacePartialUpdate(requestParameters: ApiUserSpacePartial... method apiUserSpaceRetrieveRaw (line 21008) | async apiUserSpaceRetrieveRaw(requestParameters: ApiUserSpaceRetrieveR... method apiUserSpaceRetrieve (line 21037) | async apiUserSpaceRetrieve(requestParameters: ApiUserSpaceRetrieveRequ... method apiUserSpaceUpdateRaw (line 21045) | async apiUserSpaceUpdateRaw(requestParameters: ApiUserSpaceUpdateReque... method apiUserSpaceUpdate (line 21084) | async apiUserSpaceUpdate(requestParameters: ApiUserSpaceUpdateRequest,... method apiViewLogCreateRaw (line 21092) | async apiViewLogCreateRaw(requestParameters: ApiViewLogCreateRequest, ... method apiViewLogCreate (line 21124) | async apiViewLogCreate(requestParameters: ApiViewLogCreateRequest, ini... method apiViewLogDestroyRaw (line 21132) | async apiViewLogDestroyRaw(requestParameters: ApiViewLogDestroyRequest... method apiViewLogDestroy (line 21161) | async apiViewLogDestroy(requestParameters: ApiViewLogDestroyRequest, i... method apiViewLogListRaw (line 21168) | async apiViewLogListRaw(requestParameters: ApiViewLogListRequest, init... method apiViewLogList (line 21198) | async apiViewLogList(requestParameters: ApiViewLogListRequest = {}, in... method apiViewLogPartialUpdateRaw (line 21206) | async apiViewLogPartialUpdateRaw(requestParameters: ApiViewLogPartialU... method apiViewLogPartialUpdate (line 21238) | async apiViewLogPartialUpdate(requestParameters: ApiViewLogPartialUpda... method apiViewLogRetrieveRaw (line 21246) | async apiViewLogRetrieveRaw(requestParameters: ApiViewLogRetrieveReque... method apiViewLogRetrieve (line 21275) | async apiViewLogRetrieve(requestParameters: ApiViewLogRetrieveRequest,... method apiViewLogUpdateRaw (line 21283) | async apiViewLogUpdateRaw(requestParameters: ApiViewLogUpdateRequest, ... method apiViewLogUpdate (line 21322) | async apiViewLogUpdate(requestParameters: ApiViewLogUpdateRequest, ini... type ApiAutomationListTypeEnum (line 21344) | type ApiAutomationListTypeEnum = typeof ApiAutomationListTypeEnum[keyof ... type ApiCustomFilterListTypeEnum (line 21353) | type ApiCustomFilterListTypeEnum = typeof ApiCustomFilterListTypeEnum[ke... type ApiPropertyTypeListCategoryEnum (line 21364) | type ApiPropertyTypeListCategoryEnum = typeof ApiPropertyTypeListCategor... type ApiRecipeBookListOrderDirectionEnum (line 21372) | type ApiRecipeBookListOrderDirectionEnum = typeof ApiRecipeBookListOrder... type ApiRecipeBookListOrderFieldEnum (line 21381) | type ApiRecipeBookListOrderFieldEnum = typeof ApiRecipeBookListOrderFiel... FILE: vue3/src/openapi/apis/ApiTokenAuthApi.ts type ApiTokenAuthCreateRequest (line 25) | interface ApiTokenAuthCreateRequest { class ApiTokenAuthApi (line 34) | class ApiTokenAuthApi extends runtime.BaseAPI { method apiTokenAuthCreateRaw (line 38) | async apiTokenAuthCreateRaw(requestParameters: ApiTokenAuthCreateReque... method apiTokenAuthCreate (line 109) | async apiTokenAuthCreate(requestParameters: ApiTokenAuthCreateRequest,... FILE: vue3/src/openapi/models/AccessToken.ts type AccessToken (line 21) | interface AccessToken { function instanceOfAccessToken (line 63) | function instanceOfAccessToken(value: object): value is AccessToken { function AccessTokenFromJSON (line 71) | function AccessTokenFromJSON(json: any): AccessToken { function AccessTokenFromJSONTyped (line 75) | function AccessTokenFromJSONTyped(json: any, ignoreDiscriminator: boolea... function AccessTokenToJSON (line 90) | function AccessTokenToJSON(value?: Omit | null): any { FILE: vue3/src/openapi/models/AutoMealPlan.ts type AutoMealPlan (line 28) | interface AutoMealPlan { function instanceOfAutoMealPlan (line 76) | function instanceOfAutoMealPlan(value: object): value is AutoMealPlan { function AutoMealPlanFromJSON (line 86) | function AutoMealPlanFromJSON(json: any): AutoMealPlan { function AutoMealPlanFromJSONTyped (line 90) | function AutoMealPlanFromJSONTyped(json: any, ignoreDiscriminator: boole... function AutoMealPlanToJSON (line 106) | function AutoMealPlanToJSON(value?: AutoMealPlan | null): any { FILE: vue3/src/openapi/models/Automation.ts type Automation (line 28) | interface Automation { function instanceOfAutomation (line 94) | function instanceOfAutomation(value: object): value is Automation { function AutomationFromJSON (line 100) | function AutomationFromJSON(json: any): Automation { function AutomationFromJSONTyped (line 104) | function AutomationFromJSONTyped(json: any, ignoreDiscriminator: boolean... function AutomationToJSON (line 123) | function AutomationToJSON(value?: Omit | null):... FILE: vue3/src/openapi/models/AutomationTypeEnum.ts type AutomationTypeEnum (line 41) | type AutomationTypeEnum = typeof AutomationTypeEnum[keyof typeof Automat... function instanceOfAutomationTypeEnum (line 44) | function instanceOfAutomationTypeEnum(value: any): boolean { function AutomationTypeEnumFromJSON (line 55) | function AutomationTypeEnumFromJSON(json: any): AutomationTypeEnum { function AutomationTypeEnumFromJSONTyped (line 59) | function AutomationTypeEnumFromJSONTyped(json: any, ignoreDiscriminator:... function AutomationTypeEnumToJSON (line 63) | function AutomationTypeEnumToJSON(value?: AutomationTypeEnum | null): any { FILE: vue3/src/openapi/models/BaseUnitEnum.ts type BaseUnitEnum (line 59) | type BaseUnitEnum = typeof BaseUnitEnum[keyof typeof BaseUnitEnum]; function instanceOfBaseUnitEnum (line 62) | function instanceOfBaseUnitEnum(value: any): boolean { function BaseUnitEnumFromJSON (line 73) | function BaseUnitEnumFromJSON(json: any): BaseUnitEnum { function BaseUnitEnumFromJSONTyped (line 77) | function BaseUnitEnumFromJSONTyped(json: any, ignoreDiscriminator: boole... function BaseUnitEnumToJSON (line 81) | function BaseUnitEnumToJSON(value?: BaseUnitEnum | null): any { FILE: vue3/src/openapi/models/BookingTypeEnum.ts type BookingTypeEnum (line 27) | type BookingTypeEnum = typeof BookingTypeEnum[keyof typeof BookingTypeEn... function instanceOfBookingTypeEnum (line 30) | function instanceOfBookingTypeEnum(value: any): boolean { function BookingTypeEnumFromJSON (line 41) | function BookingTypeEnumFromJSON(json: any): BookingTypeEnum { function BookingTypeEnumFromJSONTyped (line 45) | function BookingTypeEnumFromJSONTyped(json: any, ignoreDiscriminator: bo... function BookingTypeEnumToJSON (line 49) | function BookingTypeEnumToJSON(value?: BookingTypeEnum | null): any { FILE: vue3/src/openapi/models/BookmarkletImport.ts type BookmarkletImport (line 21) | interface BookmarkletImport { function instanceOfBookmarkletImport (line 57) | function instanceOfBookmarkletImport(value: object): value is Bookmarkle... function BookmarkletImportFromJSON (line 64) | function BookmarkletImportFromJSON(json: any): BookmarkletImport { function BookmarkletImportFromJSONTyped (line 68) | function BookmarkletImportFromJSONTyped(json: any, ignoreDiscriminator: ... function BookmarkletImportToJSON (line 82) | function BookmarkletImportToJSON(value?: Omit | ... FILE: vue3/src/openapi/models/CustomFilter.ts type CustomFilter (line 28) | interface CustomFilter { function instanceOfCustomFilter (line 64) | function instanceOfCustomFilter(value: object): value is CustomFilter { function CustomFilterFromJSON (line 71) | function CustomFilterFromJSON(json: any): CustomFilter { function CustomFilterFromJSONTyped (line 75) | function CustomFilterFromJSONTyped(json: any, ignoreDiscriminator: boole... function CustomFilterToJSON (line 89) | function CustomFilterToJSON(value?: Omit | nu... FILE: vue3/src/openapi/models/DefaultPageEnum.ts type DefaultPageEnum (line 29) | type DefaultPageEnum = typeof DefaultPageEnum[keyof typeof DefaultPageEn... function instanceOfDefaultPageEnum (line 32) | function instanceOfDefaultPageEnum(value: any): boolean { function DefaultPageEnumFromJSON (line 43) | function DefaultPageEnumFromJSON(json: any): DefaultPageEnum { function DefaultPageEnumFromJSONTyped (line 47) | function DefaultPageEnumFromJSONTyped(json: any, ignoreDiscriminator: bo... function DefaultPageEnumToJSON (line 51) | function DefaultPageEnumToJSON(value?: DefaultPageEnum | null): any { FILE: vue3/src/openapi/models/DeleteEnum.ts type DeleteEnum (line 23) | type DeleteEnum = typeof DeleteEnum[keyof typeof DeleteEnum]; function instanceOfDeleteEnum (line 26) | function instanceOfDeleteEnum(value: any): boolean { function DeleteEnumFromJSON (line 37) | function DeleteEnumFromJSON(json: any): DeleteEnum { function DeleteEnumFromJSONTyped (line 41) | function DeleteEnumFromJSONTyped(json: any, ignoreDiscriminator: boolean... function DeleteEnumToJSON (line 45) | function DeleteEnumToJSON(value?: DeleteEnum | null): any { FILE: vue3/src/openapi/models/EnterpriseKeyword.ts type EnterpriseKeyword (line 21) | interface EnterpriseKeyword { function instanceOfEnterpriseKeyword (line 51) | function instanceOfEnterpriseKeyword(value: object): value is Enterprise... function EnterpriseKeywordFromJSON (line 57) | function EnterpriseKeywordFromJSON(json: any): EnterpriseKeyword { function EnterpriseKeywordFromJSONTyped (line 61) | function EnterpriseKeywordFromJSONTyped(json: any, ignoreDiscriminator: ... function EnterpriseKeywordToJSON (line 74) | function EnterpriseKeywordToJSON(value?: Omit | null): any { FILE: vue3/src/openapi/models/Household.ts type Household (line 21) | interface Household { function instanceOfHousehold (line 51) | function instanceOfHousehold(value: object): value is Household { function HouseholdFromJSON (line 58) | function HouseholdFromJSON(json: any): Household { function HouseholdFromJSONTyped (line 62) | function HouseholdFromJSONTyped(json: any, ignoreDiscriminator: boolean)... function HouseholdToJSON (line 75) | function HouseholdToJSON(value?: Omit | nu... FILE: vue3/src/openapi/models/InviteLink.ts type InviteLink (line 28) | interface InviteLink { function instanceOfInviteLink (line 100) | function instanceOfInviteLink(value: object): value is InviteLink { function InviteLinkFromJSON (line 110) | function InviteLinkFromJSON(json: any): InviteLink { function InviteLinkFromJSONTyped (line 114) | function InviteLinkFromJSONTyped(json: any, ignoreDiscriminator: boolean... function InviteLinkToJSON (line 134) | function InviteLinkToJSON(value?: Omit | null):... FILE: vue3/src/openapi/models/Localization.ts type Localization (line 21) | interface Localization { function instanceOfLocalization (line 39) | function instanceOfLocalization(value: object): value is Localization { function LocalizationFromJSON (line 45) | function LocalizationFromJSON(json: any): Localization { function LocalizationFromJSONTyped (line 49) | function LocalizationFromJSONTyped(json: any, ignoreDiscriminator: boole... function LocalizationToJSON (line 60) | function LocalizationToJSON(value?: Omit | null): any { FILE: vue3/src/openapi/models/MethodEnum.ts type MethodEnum (line 27) | type MethodEnum = typeof MethodEnum[keyof typeof MethodEnum]; function instanceOfMethodEnum (line 30) | function instanceOfMethodEnum(value: any): boolean { function MethodEnumFromJSON (line 41) | function MethodEnumFromJSON(json: any): MethodEnum { function MethodEnumFromJSONTyped (line 45) | function MethodEnumFromJSONTyped(json: any, ignoreDiscriminator: boolean... function MethodEnumToJSON (line 49) | function MethodEnumToJSON(value?: MethodEnum | null): any { FILE: vue3/src/openapi/models/NutritionInformation.ts type NutritionInformation (line 21) | interface NutritionInformation { function instanceOfNutritionInformation (line 63) | function instanceOfNutritionInformation(value: object): value is Nutriti... function NutritionInformationFromJSON (line 71) | function NutritionInformationFromJSON(json: any): NutritionInformation { function NutritionInformationFromJSONTyped (line 75) | function NutritionInformationFromJSONTyped(json: any, ignoreDiscriminato... function NutritionInformationToJSON (line 90) | function NutritionInformationToJSON(value?: NutritionInformation | null)... FILE: vue3/src/openapi/models/OpenDataCategory.ts type OpenDataCategory (line 62) | interface OpenDataCategory { function instanceOfOpenDataCategory (line 110) | function instanceOfOpenDataCategory(value: object): value is OpenDataCat... function OpenDataCategoryFromJSON (line 118) | function OpenDataCategoryFromJSON(json: any): OpenDataCategory { function OpenDataCategoryFromJSONTyped (line 122) | function OpenDataCategoryFromJSONTyped(json: any, ignoreDiscriminator: b... function OpenDataCategoryToJSON (line 138) | function OpenDataCategoryToJSON(value?: Omit | nu... FILE: vue3/src/openapi/models/OpenDataFoodProperty.ts type OpenDataFoodProperty (line 28) | interface OpenDataFoodProperty { function instanceOfOpenDataFoodProperty (line 52) | function instanceOfOpenDataFoodProperty(value: object): value is OpenDat... function OpenDataFoodPropertyFromJSON (line 58) | function OpenDataFoodPropertyFromJSON(json: any): OpenDataFoodProperty { function OpenDataFoodPropertyFromJSONTyped (line 62) | function OpenDataFoodPropertyFromJSONTyped(json: any, ignoreDiscriminato... function OpenDataFoodPropertyToJSON (line 74) | function OpenDataFoodPropertyToJSON(value?: OpenDataFoodProperty | null)... FILE: vue3/src/openapi/models/OpenDataProperty.ts type OpenDataProperty (line 62) | interface OpenDataProperty { function instanceOfOpenDataProperty (line 116) | function instanceOfOpenDataProperty(value: object): value is OpenDataPro... function OpenDataPropertyFromJSON (line 124) | function OpenDataPropertyFromJSON(json: any): OpenDataProperty { function OpenDataPropertyFromJSONTyped (line 128) | function OpenDataPropertyFromJSONTyped(json: any, ignoreDiscriminator: b... function OpenDataPropertyToJSON (line 145) | function OpenDataPropertyToJSON(value?: Omit | ... FILE: vue3/src/openapi/models/OpenDataStoreCategory.ts type OpenDataStoreCategory (line 28) | interface OpenDataStoreCategory { function instanceOfOpenDataStoreCategory (line 58) | function instanceOfOpenDataStoreCategory(value: object): value is OpenDa... function OpenDataStoreCategoryFromJSON (line 64) | function OpenDataStoreCategoryFromJSON(json: any): OpenDataStoreCategory { function OpenDataStoreCategoryFromJSONTyped (line 68) | function OpenDataStoreCategoryFromJSONTyped(json: any, ignoreDiscriminat... function OpenDataStoreCategoryToJSON (line 81) | function OpenDataStoreCategoryToJSON(value?: OpenDataStoreCategory | nul... FILE: vue3/src/openapi/models/OpenDataUnit.ts type OpenDataUnit (line 74) | interface OpenDataUnit { function instanceOfOpenDataUnit (line 134) | function instanceOfOpenDataUnit(value: object): value is OpenDataUnit { function OpenDataUnitFromJSON (line 143) | function OpenDataUnitFromJSON(json: any): OpenDataUnit { function OpenDataUnitFromJSONTyped (line 147) | function OpenDataUnitFromJSONTyped(json: any, ignoreDiscriminator: boole... function OpenDataUnitToJSON (line 165) | function OpenDataUnitToJSON(value?: Omit | nu... FILE: vue3/src/openapi/models/OpenDataUnitTypeEnum.ts type OpenDataUnitTypeEnum (line 27) | type OpenDataUnitTypeEnum = typeof OpenDataUnitTypeEnum[keyof typeof Ope... function instanceOfOpenDataUnitTypeEnum (line 30) | function instanceOfOpenDataUnitTypeEnum(value: any): boolean { function OpenDataUnitTypeEnumFromJSON (line 41) | function OpenDataUnitTypeEnumFromJSON(json: any): OpenDataUnitTypeEnum { function OpenDataUnitTypeEnumFromJSONTyped (line 45) | function OpenDataUnitTypeEnumFromJSONTyped(json: any, ignoreDiscriminato... function OpenDataUnitTypeEnumToJSON (line 49) | function OpenDataUnitTypeEnumToJSON(value?: OpenDataUnitTypeEnum | null)... FILE: vue3/src/openapi/models/OpenDataVersion.ts type OpenDataVersion (line 55) | interface OpenDataVersion { function instanceOfOpenDataVersion (line 85) | function instanceOfOpenDataVersion(value: object): value is OpenDataVers... function OpenDataVersionFromJSON (line 91) | function OpenDataVersionFromJSON(json: any): OpenDataVersion { function OpenDataVersionFromJSONTyped (line 95) | function OpenDataVersionFromJSONTyped(json: any, ignoreDiscriminator: bo... function OpenDataVersionToJSON (line 108) | function OpenDataVersionToJSON(value?: OpenDataVersion | null): any { FILE: vue3/src/openapi/models/PaginatedAiLogList.ts type PaginatedAiLogList (line 28) | interface PaginatedAiLogList { function instanceOfPaginatedAiLogList (line 64) | function instanceOfPaginatedAiLogList(value: object): value is Paginated... function PaginatedAiLogListFromJSON (line 70) | function PaginatedAiLogListFromJSON(json: any): PaginatedAiLogList { function PaginatedAiLogListFromJSONTyped (line 74) | function PaginatedAiLogListFromJSONTyped(json: any, ignoreDiscriminator:... function PaginatedAiLogListToJSON (line 88) | function PaginatedAiLogListToJSON(value?: PaginatedAiLogList | null): any { FILE: vue3/src/openapi/models/PaginatedAiProviderList.ts type PaginatedAiProviderList (line 28) | interface PaginatedAiProviderList { function instanceOfPaginatedAiProviderList (line 64) | function instanceOfPaginatedAiProviderList(value: object): value is Pagi... function PaginatedAiProviderListFromJSON (line 70) | function PaginatedAiProviderListFromJSON(json: any): PaginatedAiProvider... function PaginatedAiProviderListFromJSONTyped (line 74) | function PaginatedAiProviderListFromJSONTyped(json: any, ignoreDiscrimin... function PaginatedAiProviderListToJSON (line 88) | function PaginatedAiProviderListToJSON(value?: PaginatedAiProviderList |... FILE: vue3/src/openapi/models/PaginatedAutomationList.ts type PaginatedAutomationList (line 28) | interface PaginatedAutomationList { function instanceOfPaginatedAutomationList (line 64) | function instanceOfPaginatedAutomationList(value: object): value is Pagi... function PaginatedAutomationListFromJSON (line 70) | function PaginatedAutomationListFromJSON(json: any): PaginatedAutomation... function PaginatedAutomationListFromJSONTyped (line 74) | function PaginatedAutomationListFromJSONTyped(json: any, ignoreDiscrimin... function PaginatedAutomationListToJSON (line 88) | function PaginatedAutomationListToJSON(value?: PaginatedAutomationList |... FILE: vue3/src/openapi/models/PaginatedBookmarkletImportListList.ts type PaginatedBookmarkletImportListList (line 28) | interface PaginatedBookmarkletImportListList { function instanceOfPaginatedBookmarkletImportListList (line 64) | function instanceOfPaginatedBookmarkletImportListList(value: object): va... function PaginatedBookmarkletImportListListFromJSON (line 70) | function PaginatedBookmarkletImportListListFromJSON(json: any): Paginate... function PaginatedBookmarkletImportListListFromJSONTyped (line 74) | function PaginatedBookmarkletImportListListFromJSONTyped(json: any, igno... function PaginatedBookmarkletImportListListToJSON (line 88) | function PaginatedBookmarkletImportListListToJSON(value?: PaginatedBookm... FILE: vue3/src/openapi/models/PaginatedConnectorConfigConfigList.ts type PaginatedConnectorConfigConfigList (line 28) | interface PaginatedConnectorConfigConfigList { function instanceOfPaginatedConnectorConfigConfigList (line 64) | function instanceOfPaginatedConnectorConfigConfigList(value: object): va... function PaginatedConnectorConfigConfigListFromJSON (line 70) | function PaginatedConnectorConfigConfigListFromJSON(json: any): Paginate... function PaginatedConnectorConfigConfigListFromJSONTyped (line 74) | function PaginatedConnectorConfigConfigListFromJSONTyped(json: any, igno... function PaginatedConnectorConfigConfigListToJSON (line 88) | function PaginatedConnectorConfigConfigListToJSON(value?: PaginatedConne... FILE: vue3/src/openapi/models/PaginatedConnectorConfigList.ts type PaginatedConnectorConfigList (line 28) | interface PaginatedConnectorConfigList { function instanceOfPaginatedConnectorConfigList (line 64) | function instanceOfPaginatedConnectorConfigList(value: object): value is... function PaginatedConnectorConfigListFromJSON (line 70) | function PaginatedConnectorConfigListFromJSON(json: any): PaginatedConne... function PaginatedConnectorConfigListFromJSONTyped (line 74) | function PaginatedConnectorConfigListFromJSONTyped(json: any, ignoreDisc... function PaginatedConnectorConfigListToJSON (line 88) | function PaginatedConnectorConfigListToJSON(value?: PaginatedConnectorCo... FILE: vue3/src/openapi/models/PaginatedCookLogList.ts type PaginatedCookLogList (line 28) | interface PaginatedCookLogList { function instanceOfPaginatedCookLogList (line 64) | function instanceOfPaginatedCookLogList(value: object): value is Paginat... function PaginatedCookLogListFromJSON (line 70) | function PaginatedCookLogListFromJSON(json: any): PaginatedCookLogList { function PaginatedCookLogListFromJSONTyped (line 74) | function PaginatedCookLogListFromJSONTyped(json: any, ignoreDiscriminato... function PaginatedCookLogListToJSON (line 88) | function PaginatedCookLogListToJSON(value?: PaginatedCookLogList | null)... FILE: vue3/src/openapi/models/PaginatedCustomFilterList.ts type PaginatedCustomFilterList (line 28) | interface PaginatedCustomFilterList { function instanceOfPaginatedCustomFilterList (line 64) | function instanceOfPaginatedCustomFilterList(value: object): value is Pa... function PaginatedCustomFilterListFromJSON (line 70) | function PaginatedCustomFilterListFromJSON(json: any): PaginatedCustomFi... function PaginatedCustomFilterListFromJSONTyped (line 74) | function PaginatedCustomFilterListFromJSONTyped(json: any, ignoreDiscrim... function PaginatedCustomFilterListToJSON (line 88) | function PaginatedCustomFilterListToJSON(value?: PaginatedCustomFilterLi... FILE: vue3/src/openapi/models/PaginatedEnterpriseSocialEmbedList.ts type PaginatedEnterpriseSocialEmbedList (line 28) | interface PaginatedEnterpriseSocialEmbedList { function instanceOfPaginatedEnterpriseSocialEmbedList (line 64) | function instanceOfPaginatedEnterpriseSocialEmbedList(value: object): va... function PaginatedEnterpriseSocialEmbedListFromJSON (line 70) | function PaginatedEnterpriseSocialEmbedListFromJSON(json: any): Paginate... function PaginatedEnterpriseSocialEmbedListFromJSONTyped (line 74) | function PaginatedEnterpriseSocialEmbedListFromJSONTyped(json: any, igno... function PaginatedEnterpriseSocialEmbedListToJSON (line 88) | function PaginatedEnterpriseSocialEmbedListToJSON(value?: PaginatedEnter... FILE: vue3/src/openapi/models/PaginatedEnterpriseSocialRecipeSearchList.ts type PaginatedEnterpriseSocialRecipeSearchList (line 28) | interface PaginatedEnterpriseSocialRecipeSearchList { function instanceOfPaginatedEnterpriseSocialRecipeSearchList (line 64) | function instanceOfPaginatedEnterpriseSocialRecipeSearchList(value: obje... function PaginatedEnterpriseSocialRecipeSearchListFromJSON (line 70) | function PaginatedEnterpriseSocialRecipeSearchListFromJSON(json: any): P... function PaginatedEnterpriseSocialRecipeSearchListFromJSONTyped (line 74) | function PaginatedEnterpriseSocialRecipeSearchListFromJSONTyped(json: an... function PaginatedEnterpriseSocialRecipeSearchListToJSON (line 88) | function PaginatedEnterpriseSocialRecipeSearchListToJSON(value?: Paginat... FILE: vue3/src/openapi/models/PaginatedEnterpriseSpaceList.ts type PaginatedEnterpriseSpaceList (line 28) | interface PaginatedEnterpriseSpaceList { function instanceOfPaginatedEnterpriseSpaceList (line 64) | function instanceOfPaginatedEnterpriseSpaceList(value: object): value is... function PaginatedEnterpriseSpaceListFromJSON (line 70) | function PaginatedEnterpriseSpaceListFromJSON(json: any): PaginatedEnter... function PaginatedEnterpriseSpaceListFromJSONTyped (line 74) | function PaginatedEnterpriseSpaceListFromJSONTyped(json: any, ignoreDisc... function PaginatedEnterpriseSpaceListToJSON (line 88) | function PaginatedEnterpriseSpaceListToJSON(value?: PaginatedEnterpriseS... FILE: vue3/src/openapi/models/PaginatedExportLogList.ts type PaginatedExportLogList (line 28) | interface PaginatedExportLogList { function instanceOfPaginatedExportLogList (line 64) | function instanceOfPaginatedExportLogList(value: object): value is Pagin... function PaginatedExportLogListFromJSON (line 70) | function PaginatedExportLogListFromJSON(json: any): PaginatedExportLogLi... function PaginatedExportLogListFromJSONTyped (line 74) | function PaginatedExportLogListFromJSONTyped(json: any, ignoreDiscrimina... function PaginatedExportLogListToJSON (line 88) | function PaginatedExportLogListToJSON(value?: PaginatedExportLogList | n... FILE: vue3/src/openapi/models/PaginatedFoodList.ts type PaginatedFoodList (line 28) | interface PaginatedFoodList { function instanceOfPaginatedFoodList (line 64) | function instanceOfPaginatedFoodList(value: object): value is PaginatedF... function PaginatedFoodListFromJSON (line 70) | function PaginatedFoodListFromJSON(json: any): PaginatedFoodList { function PaginatedFoodListFromJSONTyped (line 74) | function PaginatedFoodListFromJSONTyped(json: any, ignoreDiscriminator: ... function PaginatedFoodListToJSON (line 88) | function PaginatedFoodListToJSON(value?: PaginatedFoodList | null): any { FILE: vue3/src/openapi/models/PaginatedGenericModelList.ts type PaginatedGenericModelList (line 28) | interface PaginatedGenericModelList { function instanceOfPaginatedGenericModelList (line 64) | function instanceOfPaginatedGenericModelList(value: object): value is Pa... function PaginatedGenericModelListFromJSON (line 70) | function PaginatedGenericModelListFromJSON(json: any): PaginatedGenericM... function PaginatedGenericModelListFromJSONTyped (line 74) | function PaginatedGenericModelListFromJSONTyped(json: any, ignoreDiscrim... function PaginatedGenericModelListToJSON (line 88) | function PaginatedGenericModelListToJSON(value?: PaginatedGenericModelLi... FILE: vue3/src/openapi/models/PaginatedGenericModelReferenceList.ts type PaginatedGenericModelReferenceList (line 28) | interface PaginatedGenericModelReferenceList { function instanceOfPaginatedGenericModelReferenceList (line 64) | function instanceOfPaginatedGenericModelReferenceList(value: object): va... function PaginatedGenericModelReferenceListFromJSON (line 70) | function PaginatedGenericModelReferenceListFromJSON(json: any): Paginate... function PaginatedGenericModelReferenceListFromJSONTyped (line 74) | function PaginatedGenericModelReferenceListFromJSONTyped(json: any, igno... function PaginatedGenericModelReferenceListToJSON (line 88) | function PaginatedGenericModelReferenceListToJSON(value?: PaginatedGener... FILE: vue3/src/openapi/models/PaginatedHouseholdList.ts type PaginatedHouseholdList (line 28) | interface PaginatedHouseholdList { function instanceOfPaginatedHouseholdList (line 64) | function instanceOfPaginatedHouseholdList(value: object): value is Pagin... function PaginatedHouseholdListFromJSON (line 70) | function PaginatedHouseholdListFromJSON(json: any): PaginatedHouseholdLi... function PaginatedHouseholdListFromJSONTyped (line 74) | function PaginatedHouseholdListFromJSONTyped(json: any, ignoreDiscrimina... function PaginatedHouseholdListToJSON (line 88) | function PaginatedHouseholdListToJSON(value?: PaginatedHouseholdList | n... FILE: vue3/src/openapi/models/PaginatedImportLogList.ts type PaginatedImportLogList (line 28) | interface PaginatedImportLogList { function instanceOfPaginatedImportLogList (line 64) | function instanceOfPaginatedImportLogList(value: object): value is Pagin... function PaginatedImportLogListFromJSON (line 70) | function PaginatedImportLogListFromJSON(json: any): PaginatedImportLogLi... function PaginatedImportLogListFromJSONTyped (line 74) | function PaginatedImportLogListFromJSONTyped(json: any, ignoreDiscrimina... function PaginatedImportLogListToJSON (line 88) | function PaginatedImportLogListToJSON(value?: PaginatedImportLogList | n... FILE: vue3/src/openapi/models/PaginatedIngredientList.ts type PaginatedIngredientList (line 28) | interface PaginatedIngredientList { function instanceOfPaginatedIngredientList (line 64) | function instanceOfPaginatedIngredientList(value: object): value is Pagi... function PaginatedIngredientListFromJSON (line 70) | function PaginatedIngredientListFromJSON(json: any): PaginatedIngredient... function PaginatedIngredientListFromJSONTyped (line 74) | function PaginatedIngredientListFromJSONTyped(json: any, ignoreDiscrimin... function PaginatedIngredientListToJSON (line 88) | function PaginatedIngredientListToJSON(value?: PaginatedIngredientList |... FILE: vue3/src/openapi/models/PaginatedInventoryEntryList.ts type PaginatedInventoryEntryList (line 28) | interface PaginatedInventoryEntryList { function instanceOfPaginatedInventoryEntryList (line 64) | function instanceOfPaginatedInventoryEntryList(value: object): value is ... function PaginatedInventoryEntryListFromJSON (line 70) | function PaginatedInventoryEntryListFromJSON(json: any): PaginatedInvent... function PaginatedInventoryEntryListFromJSONTyped (line 74) | function PaginatedInventoryEntryListFromJSONTyped(json: any, ignoreDiscr... function PaginatedInventoryEntryListToJSON (line 88) | function PaginatedInventoryEntryListToJSON(value?: PaginatedInventoryEnt... FILE: vue3/src/openapi/models/PaginatedInventoryLocationList.ts type PaginatedInventoryLocationList (line 28) | interface PaginatedInventoryLocationList { function instanceOfPaginatedInventoryLocationList (line 64) | function instanceOfPaginatedInventoryLocationList(value: object): value ... function PaginatedInventoryLocationListFromJSON (line 70) | function PaginatedInventoryLocationListFromJSON(json: any): PaginatedInv... function PaginatedInventoryLocationListFromJSONTyped (line 74) | function PaginatedInventoryLocationListFromJSONTyped(json: any, ignoreDi... function PaginatedInventoryLocationListToJSON (line 88) | function PaginatedInventoryLocationListToJSON(value?: PaginatedInventory... FILE: vue3/src/openapi/models/PaginatedInventoryLogList.ts type PaginatedInventoryLogList (line 28) | interface PaginatedInventoryLogList { function instanceOfPaginatedInventoryLogList (line 64) | function instanceOfPaginatedInventoryLogList(value: object): value is Pa... function PaginatedInventoryLogListFromJSON (line 70) | function PaginatedInventoryLogListFromJSON(json: any): PaginatedInventor... function PaginatedInventoryLogListFromJSONTyped (line 74) | function PaginatedInventoryLogListFromJSONTyped(json: any, ignoreDiscrim... function PaginatedInventoryLogListToJSON (line 88) | function PaginatedInventoryLogListToJSON(value?: PaginatedInventoryLogLi... FILE: vue3/src/openapi/models/PaginatedInviteLinkList.ts type PaginatedInviteLinkList (line 28) | interface PaginatedInviteLinkList { function instanceOfPaginatedInviteLinkList (line 64) | function instanceOfPaginatedInviteLinkList(value: object): value is Pagi... function PaginatedInviteLinkListFromJSON (line 70) | function PaginatedInviteLinkListFromJSON(json: any): PaginatedInviteLink... function PaginatedInviteLinkListFromJSONTyped (line 74) | function PaginatedInviteLinkListFromJSONTyped(json: any, ignoreDiscrimin... function PaginatedInviteLinkListToJSON (line 88) | function PaginatedInviteLinkListToJSON(value?: PaginatedInviteLinkList |... FILE: vue3/src/openapi/models/PaginatedKeywordList.ts type PaginatedKeywordList (line 28) | interface PaginatedKeywordList { function instanceOfPaginatedKeywordList (line 64) | function instanceOfPaginatedKeywordList(value: object): value is Paginat... function PaginatedKeywordListFromJSON (line 70) | function PaginatedKeywordListFromJSON(json: any): PaginatedKeywordList { function PaginatedKeywordListFromJSONTyped (line 74) | function PaginatedKeywordListFromJSONTyped(json: any, ignoreDiscriminato... function PaginatedKeywordListToJSON (line 88) | function PaginatedKeywordListToJSON(value?: PaginatedKeywordList | null)... FILE: vue3/src/openapi/models/PaginatedMealPlanList.ts type PaginatedMealPlanList (line 28) | interface PaginatedMealPlanList { function instanceOfPaginatedMealPlanList (line 64) | function instanceOfPaginatedMealPlanList(value: object): value is Pagina... function PaginatedMealPlanListFromJSON (line 70) | function PaginatedMealPlanListFromJSON(json: any): PaginatedMealPlanList { function PaginatedMealPlanListFromJSONTyped (line 74) | function PaginatedMealPlanListFromJSONTyped(json: any, ignoreDiscriminat... function PaginatedMealPlanListToJSON (line 88) | function PaginatedMealPlanListToJSON(value?: PaginatedMealPlanList | nul... FILE: vue3/src/openapi/models/PaginatedMealTypeList.ts type PaginatedMealTypeList (line 28) | interface PaginatedMealTypeList { function instanceOfPaginatedMealTypeList (line 64) | function instanceOfPaginatedMealTypeList(value: object): value is Pagina... function PaginatedMealTypeListFromJSON (line 70) | function PaginatedMealTypeListFromJSON(json: any): PaginatedMealTypeList { function PaginatedMealTypeListFromJSONTyped (line 74) | function PaginatedMealTypeListFromJSONTyped(json: any, ignoreDiscriminat... function PaginatedMealTypeListToJSON (line 88) | function PaginatedMealTypeListToJSON(value?: PaginatedMealTypeList | nul... FILE: vue3/src/openapi/models/PaginatedOpenDataCategoryList.ts type PaginatedOpenDataCategoryList (line 28) | interface PaginatedOpenDataCategoryList { function instanceOfPaginatedOpenDataCategoryList (line 64) | function instanceOfPaginatedOpenDataCategoryList(value: object): value i... function PaginatedOpenDataCategoryListFromJSON (line 70) | function PaginatedOpenDataCategoryListFromJSON(json: any): PaginatedOpen... function PaginatedOpenDataCategoryListFromJSONTyped (line 74) | function PaginatedOpenDataCategoryListFromJSONTyped(json: any, ignoreDis... function PaginatedOpenDataCategoryListToJSON (line 88) | function PaginatedOpenDataCategoryListToJSON(value?: PaginatedOpenDataCa... FILE: vue3/src/openapi/models/PaginatedOpenDataConversionList.ts type PaginatedOpenDataConversionList (line 28) | interface PaginatedOpenDataConversionList { function instanceOfPaginatedOpenDataConversionList (line 64) | function instanceOfPaginatedOpenDataConversionList(value: object): value... function PaginatedOpenDataConversionListFromJSON (line 70) | function PaginatedOpenDataConversionListFromJSON(json: any): PaginatedOp... function PaginatedOpenDataConversionListFromJSONTyped (line 74) | function PaginatedOpenDataConversionListFromJSONTyped(json: any, ignoreD... function PaginatedOpenDataConversionListToJSON (line 88) | function PaginatedOpenDataConversionListToJSON(value?: PaginatedOpenData... FILE: vue3/src/openapi/models/PaginatedOpenDataFoodList.ts type PaginatedOpenDataFoodList (line 28) | interface PaginatedOpenDataFoodList { function instanceOfPaginatedOpenDataFoodList (line 64) | function instanceOfPaginatedOpenDataFoodList(value: object): value is Pa... function PaginatedOpenDataFoodListFromJSON (line 70) | function PaginatedOpenDataFoodListFromJSON(json: any): PaginatedOpenData... function PaginatedOpenDataFoodListFromJSONTyped (line 74) | function PaginatedOpenDataFoodListFromJSONTyped(json: any, ignoreDiscrim... function PaginatedOpenDataFoodListToJSON (line 88) | function PaginatedOpenDataFoodListToJSON(value?: PaginatedOpenDataFoodLi... FILE: vue3/src/openapi/models/PaginatedOpenDataPropertyList.ts type PaginatedOpenDataPropertyList (line 28) | interface PaginatedOpenDataPropertyList { function instanceOfPaginatedOpenDataPropertyList (line 64) | function instanceOfPaginatedOpenDataPropertyList(value: object): value i... function PaginatedOpenDataPropertyListFromJSON (line 70) | function PaginatedOpenDataPropertyListFromJSON(json: any): PaginatedOpen... function PaginatedOpenDataPropertyListFromJSONTyped (line 74) | function PaginatedOpenDataPropertyListFromJSONTyped(json: any, ignoreDis... function PaginatedOpenDataPropertyListToJSON (line 88) | function PaginatedOpenDataPropertyListToJSON(value?: PaginatedOpenDataPr... FILE: vue3/src/openapi/models/PaginatedOpenDataStoreList.ts type PaginatedOpenDataStoreList (line 28) | interface PaginatedOpenDataStoreList { function instanceOfPaginatedOpenDataStoreList (line 64) | function instanceOfPaginatedOpenDataStoreList(value: object): value is P... function PaginatedOpenDataStoreListFromJSON (line 70) | function PaginatedOpenDataStoreListFromJSON(json: any): PaginatedOpenDat... function PaginatedOpenDataStoreListFromJSONTyped (line 74) | function PaginatedOpenDataStoreListFromJSONTyped(json: any, ignoreDiscri... function PaginatedOpenDataStoreListToJSON (line 88) | function PaginatedOpenDataStoreListToJSON(value?: PaginatedOpenDataStore... FILE: vue3/src/openapi/models/PaginatedOpenDataUnitList.ts type PaginatedOpenDataUnitList (line 28) | interface PaginatedOpenDataUnitList { function instanceOfPaginatedOpenDataUnitList (line 64) | function instanceOfPaginatedOpenDataUnitList(value: object): value is Pa... function PaginatedOpenDataUnitListFromJSON (line 70) | function PaginatedOpenDataUnitListFromJSON(json: any): PaginatedOpenData... function PaginatedOpenDataUnitListFromJSONTyped (line 74) | function PaginatedOpenDataUnitListFromJSONTyped(json: any, ignoreDiscrim... function PaginatedOpenDataUnitListToJSON (line 88) | function PaginatedOpenDataUnitListToJSON(value?: PaginatedOpenDataUnitLi... FILE: vue3/src/openapi/models/PaginatedOpenDataVersionList.ts type PaginatedOpenDataVersionList (line 28) | interface PaginatedOpenDataVersionList { function instanceOfPaginatedOpenDataVersionList (line 64) | function instanceOfPaginatedOpenDataVersionList(value: object): value is... function PaginatedOpenDataVersionListFromJSON (line 70) | function PaginatedOpenDataVersionListFromJSON(json: any): PaginatedOpenD... function PaginatedOpenDataVersionListFromJSONTyped (line 74) | function PaginatedOpenDataVersionListFromJSONTyped(json: any, ignoreDisc... function PaginatedOpenDataVersionListToJSON (line 88) | function PaginatedOpenDataVersionListToJSON(value?: PaginatedOpenDataVer... FILE: vue3/src/openapi/models/PaginatedPropertyList.ts type PaginatedPropertyList (line 28) | interface PaginatedPropertyList { function instanceOfPaginatedPropertyList (line 64) | function instanceOfPaginatedPropertyList(value: object): value is Pagina... function PaginatedPropertyListFromJSON (line 70) | function PaginatedPropertyListFromJSON(json: any): PaginatedPropertyList { function PaginatedPropertyListFromJSONTyped (line 74) | function PaginatedPropertyListFromJSONTyped(json: any, ignoreDiscriminat... function PaginatedPropertyListToJSON (line 88) | function PaginatedPropertyListToJSON(value?: PaginatedPropertyList | nul... FILE: vue3/src/openapi/models/PaginatedPropertyTypeList.ts type PaginatedPropertyTypeList (line 28) | interface PaginatedPropertyTypeList { function instanceOfPaginatedPropertyTypeList (line 64) | function instanceOfPaginatedPropertyTypeList(value: object): value is Pa... function PaginatedPropertyTypeListFromJSON (line 70) | function PaginatedPropertyTypeListFromJSON(json: any): PaginatedProperty... function PaginatedPropertyTypeListFromJSONTyped (line 74) | function PaginatedPropertyTypeListFromJSONTyped(json: any, ignoreDiscrim... function PaginatedPropertyTypeListToJSON (line 88) | function PaginatedPropertyTypeListToJSON(value?: PaginatedPropertyTypeLi... FILE: vue3/src/openapi/models/PaginatedRecipeBookEntryList.ts type PaginatedRecipeBookEntryList (line 28) | interface PaginatedRecipeBookEntryList { function instanceOfPaginatedRecipeBookEntryList (line 64) | function instanceOfPaginatedRecipeBookEntryList(value: object): value is... function PaginatedRecipeBookEntryListFromJSON (line 70) | function PaginatedRecipeBookEntryListFromJSON(json: any): PaginatedRecip... function PaginatedRecipeBookEntryListFromJSONTyped (line 74) | function PaginatedRecipeBookEntryListFromJSONTyped(json: any, ignoreDisc... function PaginatedRecipeBookEntryListToJSON (line 88) | function PaginatedRecipeBookEntryListToJSON(value?: PaginatedRecipeBookE... FILE: vue3/src/openapi/models/PaginatedRecipeBookList.ts type PaginatedRecipeBookList (line 28) | interface PaginatedRecipeBookList { function instanceOfPaginatedRecipeBookList (line 64) | function instanceOfPaginatedRecipeBookList(value: object): value is Pagi... function PaginatedRecipeBookListFromJSON (line 70) | function PaginatedRecipeBookListFromJSON(json: any): PaginatedRecipeBook... function PaginatedRecipeBookListFromJSONTyped (line 74) | function PaginatedRecipeBookListFromJSONTyped(json: any, ignoreDiscrimin... function PaginatedRecipeBookListToJSON (line 88) | function PaginatedRecipeBookListToJSON(value?: PaginatedRecipeBookList |... FILE: vue3/src/openapi/models/PaginatedRecipeImportList.ts type PaginatedRecipeImportList (line 28) | interface PaginatedRecipeImportList { function instanceOfPaginatedRecipeImportList (line 64) | function instanceOfPaginatedRecipeImportList(value: object): value is Pa... function PaginatedRecipeImportListFromJSON (line 70) | function PaginatedRecipeImportListFromJSON(json: any): PaginatedRecipeIm... function PaginatedRecipeImportListFromJSONTyped (line 74) | function PaginatedRecipeImportListFromJSONTyped(json: any, ignoreDiscrim... function PaginatedRecipeImportListToJSON (line 88) | function PaginatedRecipeImportListToJSON(value?: PaginatedRecipeImportLi... FILE: vue3/src/openapi/models/PaginatedRecipeOverviewList.ts type PaginatedRecipeOverviewList (line 28) | interface PaginatedRecipeOverviewList { function instanceOfPaginatedRecipeOverviewList (line 58) | function instanceOfPaginatedRecipeOverviewList(value: object): value is ... function PaginatedRecipeOverviewListFromJSON (line 64) | function PaginatedRecipeOverviewListFromJSON(json: any): PaginatedRecipe... function PaginatedRecipeOverviewListFromJSONTyped (line 68) | function PaginatedRecipeOverviewListFromJSONTyped(json: any, ignoreDiscr... function PaginatedRecipeOverviewListToJSON (line 81) | function PaginatedRecipeOverviewListToJSON(value?: PaginatedRecipeOvervi... FILE: vue3/src/openapi/models/PaginatedRecipeSimpleList.ts type PaginatedRecipeSimpleList (line 29) | interface PaginatedRecipeSimpleList { function instanceOfPaginatedRecipeSimpleList (line 59) | function instanceOfPaginatedRecipeSimpleList(value: object): value is Pa... function PaginatedRecipeSimpleListFromJSON (line 65) | function PaginatedRecipeSimpleListFromJSON(json: any): PaginatedRecipeSi... function PaginatedRecipeSimpleListFromJSONTyped (line 69) | function PaginatedRecipeSimpleListFromJSONTyped(json: any, ignoreDiscrim... function PaginatedRecipeSimpleListToJSON (line 82) | function PaginatedRecipeSimpleListToJSON(json: any): PaginatedRecipeSimp... function PaginatedRecipeSimpleListToJSONTyped (line 86) | function PaginatedRecipeSimpleListToJSONTyped(value?: PaginatedRecipeSim... FILE: vue3/src/openapi/models/PaginatedShoppingListEntryList.ts type PaginatedShoppingListEntryList (line 28) | interface PaginatedShoppingListEntryList { function instanceOfPaginatedShoppingListEntryList (line 64) | function instanceOfPaginatedShoppingListEntryList(value: object): value ... function PaginatedShoppingListEntryListFromJSON (line 70) | function PaginatedShoppingListEntryListFromJSON(json: any): PaginatedSho... function PaginatedShoppingListEntryListFromJSONTyped (line 74) | function PaginatedShoppingListEntryListFromJSONTyped(json: any, ignoreDi... function PaginatedShoppingListEntryListToJSON (line 88) | function PaginatedShoppingListEntryListToJSON(value?: PaginatedShoppingL... FILE: vue3/src/openapi/models/PaginatedShoppingListList.ts type PaginatedShoppingListList (line 28) | interface PaginatedShoppingListList { function instanceOfPaginatedShoppingListList (line 64) | function instanceOfPaginatedShoppingListList(value: object): value is Pa... function PaginatedShoppingListListFromJSON (line 70) | function PaginatedShoppingListListFromJSON(json: any): PaginatedShopping... function PaginatedShoppingListListFromJSONTyped (line 74) | function PaginatedShoppingListListFromJSONTyped(json: any, ignoreDiscrim... function PaginatedShoppingListListToJSON (line 88) | function PaginatedShoppingListListToJSON(value?: PaginatedShoppingListLi... FILE: vue3/src/openapi/models/PaginatedShoppingListRecipeList.ts type PaginatedShoppingListRecipeList (line 28) | interface PaginatedShoppingListRecipeList { function instanceOfPaginatedShoppingListRecipeList (line 64) | function instanceOfPaginatedShoppingListRecipeList(value: object): value... function PaginatedShoppingListRecipeListFromJSON (line 70) | function PaginatedShoppingListRecipeListFromJSON(json: any): PaginatedSh... function PaginatedShoppingListRecipeListFromJSONTyped (line 74) | function PaginatedShoppingListRecipeListFromJSONTyped(json: any, ignoreD... function PaginatedShoppingListRecipeListToJSON (line 88) | function PaginatedShoppingListRecipeListToJSON(value?: PaginatedShopping... FILE: vue3/src/openapi/models/PaginatedSpaceList.ts type PaginatedSpaceList (line 28) | interface PaginatedSpaceList { function instanceOfPaginatedSpaceList (line 64) | function instanceOfPaginatedSpaceList(value: object): value is Paginated... function PaginatedSpaceListFromJSON (line 70) | function PaginatedSpaceListFromJSON(json: any): PaginatedSpaceList { function PaginatedSpaceListFromJSONTyped (line 74) | function PaginatedSpaceListFromJSONTyped(json: any, ignoreDiscriminator:... function PaginatedSpaceListToJSON (line 88) | function PaginatedSpaceListToJSON(value?: PaginatedSpaceList | null): any { FILE: vue3/src/openapi/models/PaginatedStepList.ts type PaginatedStepList (line 28) | interface PaginatedStepList { function instanceOfPaginatedStepList (line 64) | function instanceOfPaginatedStepList(value: object): value is PaginatedS... function PaginatedStepListFromJSON (line 70) | function PaginatedStepListFromJSON(json: any): PaginatedStepList { function PaginatedStepListFromJSONTyped (line 74) | function PaginatedStepListFromJSONTyped(json: any, ignoreDiscriminator: ... function PaginatedStepListToJSON (line 88) | function PaginatedStepListToJSON(value?: PaginatedStepList | null): any { FILE: vue3/src/openapi/models/PaginatedStorageEntryList.ts type PaginatedStorageEntryList (line 28) | interface PaginatedStorageEntryList { function instanceOfPaginatedStorageEntryList (line 64) | function instanceOfPaginatedStorageEntryList(value: object): value is Pa... function PaginatedStorageEntryListFromJSON (line 70) | function PaginatedStorageEntryListFromJSON(json: any): PaginatedStorageE... function PaginatedStorageEntryListFromJSONTyped (line 74) | function PaginatedStorageEntryListFromJSONTyped(json: any, ignoreDiscrim... function PaginatedStorageEntryListToJSON (line 88) | function PaginatedStorageEntryListToJSON(value?: PaginatedStorageEntryLi... FILE: vue3/src/openapi/models/PaginatedStorageList.ts type PaginatedStorageList (line 28) | interface PaginatedStorageList { function instanceOfPaginatedStorageList (line 64) | function instanceOfPaginatedStorageList(value: object): value is Paginat... function PaginatedStorageListFromJSON (line 70) | function PaginatedStorageListFromJSON(json: any): PaginatedStorageList { function PaginatedStorageListFromJSONTyped (line 74) | function PaginatedStorageListFromJSONTyped(json: any, ignoreDiscriminato... function PaginatedStorageListToJSON (line 88) | function PaginatedStorageListToJSON(value?: PaginatedStorageList | null)... FILE: vue3/src/openapi/models/PaginatedStorageLocationList.ts type PaginatedStorageLocationList (line 28) | interface PaginatedStorageLocationList { function instanceOfPaginatedStorageLocationList (line 64) | function instanceOfPaginatedStorageLocationList(value: object): value is... function PaginatedStorageLocationListFromJSON (line 70) | function PaginatedStorageLocationListFromJSON(json: any): PaginatedStora... function PaginatedStorageLocationListFromJSONTyped (line 74) | function PaginatedStorageLocationListFromJSONTyped(json: any, ignoreDisc... function PaginatedStorageLocationListToJSON (line 88) | function PaginatedStorageLocationListToJSON(value?: PaginatedStorageLoca... FILE: vue3/src/openapi/models/PaginatedSupermarketCategoryList.ts type PaginatedSupermarketCategoryList (line 28) | interface PaginatedSupermarketCategoryList { function instanceOfPaginatedSupermarketCategoryList (line 64) | function instanceOfPaginatedSupermarketCategoryList(value: object): valu... function PaginatedSupermarketCategoryListFromJSON (line 70) | function PaginatedSupermarketCategoryListFromJSON(json: any): PaginatedS... function PaginatedSupermarketCategoryListFromJSONTyped (line 74) | function PaginatedSupermarketCategoryListFromJSONTyped(json: any, ignore... function PaginatedSupermarketCategoryListToJSON (line 88) | function PaginatedSupermarketCategoryListToJSON(value?: PaginatedSuperma... FILE: vue3/src/openapi/models/PaginatedSupermarketCategoryRelationList.ts type PaginatedSupermarketCategoryRelationList (line 28) | interface PaginatedSupermarketCategoryRelationList { function instanceOfPaginatedSupermarketCategoryRelationList (line 64) | function instanceOfPaginatedSupermarketCategoryRelationList(value: objec... function PaginatedSupermarketCategoryRelationListFromJSON (line 70) | function PaginatedSupermarketCategoryRelationListFromJSON(json: any): Pa... function PaginatedSupermarketCategoryRelationListFromJSONTyped (line 74) | function PaginatedSupermarketCategoryRelationListFromJSONTyped(json: any... function PaginatedSupermarketCategoryRelationListToJSON (line 88) | function PaginatedSupermarketCategoryRelationListToJSON(value?: Paginate... FILE: vue3/src/openapi/models/PaginatedSupermarketList.ts type PaginatedSupermarketList (line 28) | interface PaginatedSupermarketList { function instanceOfPaginatedSupermarketList (line 64) | function instanceOfPaginatedSupermarketList(value: object): value is Pag... function PaginatedSupermarketListFromJSON (line 70) | function PaginatedSupermarketListFromJSON(json: any): PaginatedSupermark... function PaginatedSupermarketListFromJSONTyped (line 74) | function PaginatedSupermarketListFromJSONTyped(json: any, ignoreDiscrimi... function PaginatedSupermarketListToJSON (line 88) | function PaginatedSupermarketListToJSON(value?: PaginatedSupermarketList... FILE: vue3/src/openapi/models/PaginatedSyncList.ts type PaginatedSyncList (line 28) | interface PaginatedSyncList { function instanceOfPaginatedSyncList (line 64) | function instanceOfPaginatedSyncList(value: object): value is PaginatedS... function PaginatedSyncListFromJSON (line 70) | function PaginatedSyncListFromJSON(json: any): PaginatedSyncList { function PaginatedSyncListFromJSONTyped (line 74) | function PaginatedSyncListFromJSONTyped(json: any, ignoreDiscriminator: ... function PaginatedSyncListToJSON (line 88) | function PaginatedSyncListToJSON(value?: PaginatedSyncList | null): any { FILE: vue3/src/openapi/models/PaginatedSyncLogList.ts type PaginatedSyncLogList (line 28) | interface PaginatedSyncLogList { function instanceOfPaginatedSyncLogList (line 64) | function instanceOfPaginatedSyncLogList(value: object): value is Paginat... function PaginatedSyncLogListFromJSON (line 70) | function PaginatedSyncLogListFromJSON(json: any): PaginatedSyncLogList { function PaginatedSyncLogListFromJSONTyped (line 74) | function PaginatedSyncLogListFromJSONTyped(json: any, ignoreDiscriminato... function PaginatedSyncLogListToJSON (line 88) | function PaginatedSyncLogListToJSON(value?: PaginatedSyncLogList | null)... FILE: vue3/src/openapi/models/PaginatedUnitConversionList.ts type PaginatedUnitConversionList (line 28) | interface PaginatedUnitConversionList { function instanceOfPaginatedUnitConversionList (line 64) | function instanceOfPaginatedUnitConversionList(value: object): value is ... function PaginatedUnitConversionListFromJSON (line 70) | function PaginatedUnitConversionListFromJSON(json: any): PaginatedUnitCo... function PaginatedUnitConversionListFromJSONTyped (line 74) | function PaginatedUnitConversionListFromJSONTyped(json: any, ignoreDiscr... function PaginatedUnitConversionListToJSON (line 88) | function PaginatedUnitConversionListToJSON(value?: PaginatedUnitConversi... FILE: vue3/src/openapi/models/PaginatedUnitList.ts type PaginatedUnitList (line 28) | interface PaginatedUnitList { function instanceOfPaginatedUnitList (line 64) | function instanceOfPaginatedUnitList(value: object): value is PaginatedU... function PaginatedUnitListFromJSON (line 70) | function PaginatedUnitListFromJSON(json: any): PaginatedUnitList { function PaginatedUnitListFromJSONTyped (line 74) | function PaginatedUnitListFromJSONTyped(json: any, ignoreDiscriminator: ... function PaginatedUnitListToJSON (line 88) | function PaginatedUnitListToJSON(value?: PaginatedUnitList | null): any { FILE: vue3/src/openapi/models/PaginatedUserFileList.ts type PaginatedUserFileList (line 28) | interface PaginatedUserFileList { function instanceOfPaginatedUserFileList (line 64) | function instanceOfPaginatedUserFileList(value: object): value is Pagina... function PaginatedUserFileListFromJSON (line 70) | function PaginatedUserFileListFromJSON(json: any): PaginatedUserFileList { function PaginatedUserFileListFromJSONTyped (line 74) | function PaginatedUserFileListFromJSONTyped(json: any, ignoreDiscriminat... function PaginatedUserFileListToJSON (line 88) | function PaginatedUserFileListToJSON(value?: PaginatedUserFileList | nul... FILE: vue3/src/openapi/models/PaginatedUserSpaceList.ts type PaginatedUserSpaceList (line 28) | interface PaginatedUserSpaceList { function instanceOfPaginatedUserSpaceList (line 64) | function instanceOfPaginatedUserSpaceList(value: object): value is Pagin... function PaginatedUserSpaceListFromJSON (line 70) | function PaginatedUserSpaceListFromJSON(json: any): PaginatedUserSpaceLi... function PaginatedUserSpaceListFromJSONTyped (line 74) | function PaginatedUserSpaceListFromJSONTyped(json: any, ignoreDiscrimina... function PaginatedUserSpaceListToJSON (line 88) | function PaginatedUserSpaceListToJSON(value?: PaginatedUserSpaceList | n... FILE: vue3/src/openapi/models/PaginatedViewLogList.ts type PaginatedViewLogList (line 28) | interface PaginatedViewLogList { function instanceOfPaginatedViewLogList (line 64) | function instanceOfPaginatedViewLogList(value: object): value is Paginat... function PaginatedViewLogListFromJSON (line 70) | function PaginatedViewLogListFromJSON(json: any): PaginatedViewLogList { function PaginatedViewLogListFromJSONTyped (line 74) | function PaginatedViewLogListFromJSONTyped(json: any, ignoreDiscriminato... function PaginatedViewLogListToJSON (line 88) | function PaginatedViewLogListToJSON(value?: PaginatedViewLogList | null)... FILE: vue3/src/openapi/models/ParsedIngredient.ts type ParsedIngredient (line 21) | interface ParsedIngredient { function instanceOfParsedIngredient (line 57) | function instanceOfParsedIngredient(value: object): value is ParsedIngre... function ParsedIngredientFromJSON (line 66) | function ParsedIngredientFromJSON(json: any): ParsedIngredient { function ParsedIngredientFromJSONTyped (line 70) | function ParsedIngredientFromJSONTyped(json: any, ignoreDiscriminator: b... function ParsedIngredientToJSON (line 84) | function ParsedIngredientToJSON(value?: ParsedIngredient | null): any { FILE: vue3/src/openapi/models/PatchedAccessToken.ts type PatchedAccessToken (line 21) | interface PatchedAccessToken { function instanceOfPatchedAccessToken (line 63) | function instanceOfPatchedAccessToken(value: object): value is PatchedAc... function PatchedAccessTokenFromJSON (line 67) | function PatchedAccessTokenFromJSON(json: any): PatchedAccessToken { function PatchedAccessTokenFromJSONTyped (line 71) | function PatchedAccessTokenFromJSONTyped(json: any, ignoreDiscriminator:... function PatchedAccessTokenToJSON (line 86) | function PatchedAccessTokenToJSON(value?: Omit ... FILE: vue3/src/openapi/models/PatchedStorageEntry.ts type PatchedStorageEntry (line 21) | interface PatchedStorageEntry { function instanceOfPatchedStorageEntry (line 87) | function instanceOfPatchedStorageEntry(value: object): value is PatchedS... function PatchedStorageEntryFromJSON (line 91) | function PatchedStorageEntryFromJSON(json: any): PatchedStorageEntry { function PatchedStorageEntryFromJSONTyped (line 95) | function PatchedStorageEntryFromJSONTyped(json: any, ignoreDiscriminator... function PatchedStorageEntryToJSON (line 114) | function PatchedStorageEntryToJSON(value?: PatchedStorageEntry | null): ... FILE: vue3/src/openapi/models/PatchedStorageLocation.ts type PatchedStorageLocation (line 55) | interface PatchedStorageLocation { function instanceOfPatchedStorageLocation (line 79) | function instanceOfPatchedStorageLocation(value: object): value is Patch... function PatchedStorageLocationFromJSON (line 83) | function PatchedStorageLocationFromJSON(json: any): PatchedStorageLocati... function PatchedStorageLocationFromJSONTyped (line 87) | function PatchedStorageLocationFromJSONTyped(json: any, ignoreDiscrimina... function PatchedStorageLocationToJSON (line 99) | function PatchedStorageLocationToJSON(value?: PatchedStorageLocation | n... FILE: vue3/src/openapi/models/PatchedSupermarket.ts type PatchedSupermarket (line 68) | interface PatchedSupermarket { function instanceOfPatchedSupermarket (line 110) | function instanceOfPatchedSupermarket(value: object): value is PatchedSu... function PatchedSupermarketFromJSON (line 114) | function PatchedSupermarketFromJSON(json: any): PatchedSupermarket { function PatchedSupermarketFromJSONTyped (line 118) | function PatchedSupermarketFromJSONTyped(json: any, ignoreDiscriminator:... function PatchedSupermarketToJSON (line 133) | function PatchedSupermarketToJSON(value?: Omit | null):... FILE: vue3/src/openapi/models/RecipeBookEntry.ts type RecipeBookEntry (line 34) | interface RecipeBookEntry { function instanceOfRecipeBookEntry (line 70) | function instanceOfRecipeBookEntry(value: object): value is RecipeBookEn... function RecipeBookEntryFromJSON (line 78) | function RecipeBookEntryFromJSON(json: any): RecipeBookEntry { function RecipeBookEntryFromJSONTyped (line 82) | function RecipeBookEntryFromJSONTyped(json: any, ignoreDiscriminator: bo... function RecipeBookEntryToJSON (line 96) | function RecipeBookEntryToJSON(value?: Omit | nul... FILE: vue3/src/openapi/models/RecipeFromSource.ts type RecipeFromSource (line 21) | interface RecipeFromSource { function instanceOfRecipeFromSource (line 45) | function instanceOfRecipeFromSource(value: object): value is RecipeFromS... function RecipeFromSourceFromJSON (line 49) | function RecipeFromSourceFromJSON(json: any): RecipeFromSource { function RecipeFromSourceFromJSONTyped (line 53) | function RecipeFromSourceFromJSONTyped(json: any, ignoreDiscriminator: b... function RecipeFromSourceToJSON (line 65) | function RecipeFromSourceToJSON(value?: RecipeFromSource | null): any { FILE: vue3/src/openapi/models/RecipeFromSourceResponse.ts type RecipeFromSourceResponse (line 34) | interface RecipeFromSourceResponse { function instanceOfRecipeFromSourceResponse (line 76) | function instanceOfRecipeFromSourceResponse(value: object): value is Rec... function RecipeFromSourceResponseFromJSON (line 80) | function RecipeFromSourceResponseFromJSON(json: any): RecipeFromSourceRe... function RecipeFromSourceResponseFromJSONTyped (line 84) | function RecipeFromSourceResponseFromJSONTyped(json: any, ignoreDiscrimi... function RecipeFromSourceResponseToJSON (line 99) | function RecipeFromSourceResponseToJSON(value?: RecipeFromSourceResponse... FILE: vue3/src/openapi/models/RecipeImage.ts type RecipeImage (line 21) | interface RecipeImage { function instanceOfRecipeImage (line 39) | function instanceOfRecipeImage(value: object): value is RecipeImage { function RecipeImageFromJSON (line 43) | function RecipeImageFromJSON(json: any): RecipeImage { function RecipeImageFromJSONTyped (line 47) | function RecipeImageFromJSONTyped(json: any, ignoreDiscriminator: boolea... function RecipeImageToJSON (line 58) | function RecipeImageToJSON(value?: RecipeImage | null): any { FILE: vue3/src/openapi/models/RecipeImport.ts type RecipeImport (line 28) | interface RecipeImport { function instanceOfRecipeImport (line 70) | function instanceOfRecipeImport(value: object): value is RecipeImport { function RecipeImportFromJSON (line 77) | function RecipeImportFromJSON(json: any): RecipeImport { function RecipeImportFromJSONTyped (line 81) | function RecipeImportFromJSONTyped(json: any, ignoreDiscriminator: boole... function RecipeImportToJSON (line 96) | function RecipeImportToJSON(value?: Omit | nu... FILE: vue3/src/openapi/models/RecipeOverview.ts type RecipeOverview (line 34) | interface RecipeOverview { function instanceOfRecipeOverview (line 148) | function instanceOfRecipeOverview(value: object): value is RecipeOverview { function RecipeOverviewFromJSON (line 167) | function RecipeOverviewFromJSON(json: any): RecipeOverview { function RecipeOverviewFromJSONTyped (line 171) | function RecipeOverviewFromJSONTyped(json: any, ignoreDiscriminator: boo... function RecipeOverviewToJSON (line 198) | function RecipeOverviewToJSON(value?: Omit | null): a... FILE: vue3/src/openapi/models/ScalingEnum.ts type ScalingEnum (line 25) | type ScalingEnum = typeof ScalingEnum[keyof typeof ScalingEnum]; function instanceOfScalingEnum (line 28) | function instanceOfScalingEnum(value: any): boolean { function ScalingEnumFromJSON (line 39) | function ScalingEnumFromJSON(json: any): ScalingEnum { function ScalingEnumFromJSONTyped (line 43) | function ScalingEnumFromJSONTyped(json: any, ignoreDiscriminator: boolea... function ScalingEnumToJSON (line 47) | function ScalingEnumToJSON(value?: ScalingEnum | null): any { FILE: vue3/src/openapi/models/SearchEnum.ts type SearchEnum (line 29) | type SearchEnum = typeof SearchEnum[keyof typeof SearchEnum]; function instanceOfSearchEnum (line 32) | function instanceOfSearchEnum(value: any): boolean { function SearchEnumFromJSON (line 43) | function SearchEnumFromJSON(json: any): SearchEnum { function SearchEnumFromJSONTyped (line 47) | function SearchEnumFromJSONTyped(json: any, ignoreDiscriminator: boolean... function SearchEnumToJSON (line 51) | function SearchEnumToJSON(value?: SearchEnum | null): any { FILE: vue3/src/openapi/models/SearchFields.ts type SearchFields (line 55) | interface SearchFields { function instanceOfSearchFields (line 79) | function instanceOfSearchFields(value: object): value is SearchFields { function SearchFieldsFromJSON (line 83) | function SearchFieldsFromJSON(json: any): SearchFields { function SearchFieldsFromJSONTyped (line 87) | function SearchFieldsFromJSONTyped(json: any, ignoreDiscriminator: boole... function SearchFieldsToJSON (line 99) | function SearchFieldsToJSON(value?: SearchFields | null): any { FILE: vue3/src/openapi/models/SearchPreference.ts type SearchPreference (line 40) | interface SearchPreference { function instanceOfSearchPreference (line 100) | function instanceOfSearchPreference(value: object): value is SearchPrefe... function SearchPreferenceFromJSON (line 105) | function SearchPreferenceFromJSON(json: any): SearchPreference { function SearchPreferenceFromJSONTyped (line 109) | function SearchPreferenceFromJSONTyped(json: any, ignoreDiscriminator: b... function SearchPreferenceToJSON (line 127) | function SearchPreferenceToJSON(value?: Omit |... FILE: vue3/src/openapi/models/ServerSettings.ts type ServerSettings (line 21) | interface ServerSettings { function instanceOfServerSettings (line 153) | function instanceOfServerSettings(value: object): value is ServerSettings { function ServerSettingsFromJSON (line 168) | function ServerSettingsFromJSON(json: any): ServerSettings { function ServerSettingsFromJSONTyped (line 172) | function ServerSettingsFromJSONTyped(json: any, ignoreDiscriminator: boo... function ServerSettingsToJSON (line 202) | function ServerSettingsToJSON(value?: ServerSettings | null): any { FILE: vue3/src/openapi/models/ShareLink.ts type ShareLink (line 21) | interface ShareLink { function instanceOfShareLink (line 45) | function instanceOfShareLink(value: object): value is ShareLink { function ShareLinkFromJSON (line 52) | function ShareLinkFromJSON(json: any): ShareLink { function ShareLinkFromJSONTyped (line 56) | function ShareLinkFromJSONTyped(json: any, ignoreDiscriminator: boolean)... function ShareLinkToJSON (line 68) | function ShareLinkToJSON(value?: ShareLink | null): any { FILE: vue3/src/openapi/models/ShoppingList.ts type ShoppingList (line 21) | interface ShoppingList { function instanceOfShoppingList (line 51) | function instanceOfShoppingList(value: object): value is ShoppingList { function ShoppingListFromJSON (line 55) | function ShoppingListFromJSON(json: any): ShoppingList { function ShoppingListFromJSONTyped (line 59) | function ShoppingListFromJSONTyped(json: any, ignoreDiscriminator: boole... function ShoppingListToJSON (line 72) | function ShoppingListToJSON(value?: ShoppingList | null): any { FILE: vue3/src/openapi/models/ShoppingListEntry.ts type ShoppingListEntry (line 52) | interface ShoppingListEntry { function instanceOfShoppingListEntry (line 154) | function instanceOfShoppingListEntry(value: object): value is ShoppingLi... function ShoppingListEntryFromJSON (line 164) | function ShoppingListEntryFromJSON(json: any): ShoppingListEntry { function ShoppingListEntryFromJSONTyped (line 168) | function ShoppingListEntryFromJSONTyped(json: any, ignoreDiscriminator: ... function ShoppingListEntryToJSON (line 193) | function ShoppingListEntryToJSON(value?: Omit | null): any { FILE: vue3/src/openapi/models/Supermarket.ts type Supermarket (line 68) | interface Supermarket { function instanceOfSupermarket (line 110) | function instanceOfSupermarket(value: object): value is Supermarket { function SupermarketFromJSON (line 116) | function SupermarketFromJSON(json: any): Supermarket { function SupermarketFromJSONTyped (line 120) | function SupermarketFromJSONTyped(json: any, ignoreDiscriminator: boolea... function SupermarketToJSON (line 135) | function SupermarketToJSON(value?: Omit | null):... FILE: vue3/src/openapi/models/SyncLog.ts type SyncLog (line 28) | interface SyncLog { function instanceOfSyncLog (line 64) | function instanceOfSyncLog(value: object): value is SyncLog { function SyncLogFromJSON (line 71) | function SyncLogFromJSON(json: any): SyncLog { function SyncLogFromJSONTyped (line 75) | function SyncLogFromJSONTyped(json: any, ignoreDiscriminator: boolean): ... function SyncLogToJSON (line 89) | function SyncLogToJSON(value?: Omit | null)... FILE: vue3/src/openapi/models/ThemeEnum.ts type ThemeEnum (line 33) | type ThemeEnum = typeof ThemeEnum[keyof typeof ThemeEnum]; function instanceOfThemeEnum (line 36) | function instanceOfThemeEnum(value: any): boolean { function ThemeEnumFromJSON (line 47) | function ThemeEnumFromJSON(json: any): ThemeEnum { function ThemeEnumFromJSONTyped (line 51) | function ThemeEnumFromJSONTyped(json: any, ignoreDiscriminator: boolean)... function ThemeEnumToJSON (line 55) | function ThemeEnumToJSON(value?: ThemeEnum | null): any { FILE: vue3/src/openapi/models/TypeEnum.ts type TypeEnum (line 41) | type TypeEnum = typeof TypeEnum[keyof typeof TypeEnum]; function instanceOfTypeEnum (line 44) | function instanceOfTypeEnum(value: any): boolean { function TypeEnumFromJSON (line 55) | function TypeEnumFromJSON(json: any): TypeEnum { function TypeEnumFromJSONTyped (line 59) | function TypeEnumFromJSONTyped(json: any, ignoreDiscriminator: boolean):... function TypeEnumToJSON (line 63) | function TypeEnumToJSON(value?: TypeEnum | null): any { FILE: vue3/src/openapi/models/Unit.ts type Unit (line 55) | interface Unit { function instanceOfUnit (line 97) | function instanceOfUnit(value: object): value is Unit { function UnitFromJSON (line 102) | function UnitFromJSON(json: any): Unit { function UnitFromJSONTyped (line 106) | function UnitFromJSONTyped(json: any, ignoreDiscriminator: boolean): Unit { function UnitToJSON (line 121) | function UnitToJSON(value?: Unit | null): any { FILE: vue3/src/openapi/models/UnitConversion.ts type UnitConversion (line 34) | interface UnitConversion { function instanceOfUnitConversion (line 88) | function instanceOfUnitConversion(value: object): value is UnitConversion { function UnitConversionFromJSON (line 97) | function UnitConversionFromJSON(json: any): UnitConversion { function UnitConversionFromJSONTyped (line 101) | function UnitConversionFromJSONTyped(json: any, ignoreDiscriminator: boo... function UnitConversionToJSON (line 118) | function UnitConversionToJSON(value?: Omit | nul... FILE: vue3/src/openapi/models/User.ts type User (line 21) | interface User { function instanceOfUser (line 75) | function instanceOfUser(value: object): value is User { function UserFromJSON (line 84) | function UserFromJSON(json: any): User { function UserFromJSONTyped (line 88) | function UserFromJSONTyped(json: any, ignoreDiscriminator: boolean): User { function UserToJSON (line 105) | function UserToJSON(value?: Omit | ... FILE: vue3/src/openapi/runtime.ts constant BASE_PATH (line 18) | let BASE_PATH = typeof window !== 'undefined' ? localStorage.getItem('BA... type ConfigurationParameters (line 20) | interface ConfigurationParameters { class Configuration (line 33) | class Configuration { method constructor (line 34) | constructor(private configuration: ConfigurationParameters = {}) {} method config (line 36) | set config(configuration: Configuration) { method basePath (line 40) | get basePath(): string { method fetchApi (line 44) | get fetchApi(): FetchAPI | undefined { method middleware (line 48) | get middleware(): Middleware[] { method queryParamsStringify (line 52) | get queryParamsStringify(): (params: HTTPQuery) => string { method username (line 56) | get username(): string | undefined { method password (line 60) | get password(): string | undefined { method apiKey (line 64) | get apiKey(): ((name: string) => string | Promise) | undefined { method accessToken (line 72) | get accessToken(): ((name?: string, scopes?: string[]) => string | Pro... method headers (line 80) | get headers(): HTTPHeaders | undefined { method credentials (line 84) | get credentials(): RequestCredentials | undefined { class BaseAPI (line 94) | class BaseAPI { method constructor (line 99) | constructor(protected configuration = DefaultConfig) { method withMiddleware (line 103) | withMiddleware(this: T, ...middlewares: Middleware[... method withPreMiddleware (line 109) | withPreMiddleware(this: T, ...preMiddlewares: Array... method withPostMiddleware (line 114) | withPostMiddleware(this: T, ...postMiddlewares: Arr... method isJsonMime (line 129) | protected isJsonMime(mime: string | null | undefined): boolean { method request (line 136) | protected async request(context: RequestOpts, initOverrides?: RequestI... method createFetchParams (line 145) | private async createFetchParams(context: RequestOpts, initOverrides?: ... method clone (line 246) | private clone(this: T): T { function isBlob (line 254) | function isBlob(value: any): value is Blob { function isFormData (line 258) | function isFormData(value: any): value is FormData { class ResponseError (line 262) | class ResponseError extends Error { method constructor (line 264) | constructor(public response: Response, msg?: string) { class FetchError (line 269) | class FetchError extends Error { method constructor (line 271) | constructor(public cause: Error, msg?: string) { class RequiredError (line 276) | class RequiredError extends Error { method constructor (line 278) | constructor(public field: string, msg?: string) { constant COLLECTION_FORMATS (line 283) | const COLLECTION_FORMATS = { type FetchAPI (line 290) | type FetchAPI = WindowOrWorkerGlobalScope['fetch']; type Json (line 292) | type Json = any; type HTTPMethod (line 293) | type HTTPMethod = 'GET' | 'POST' | 'PUT' | 'PATCH' | 'DELETE' | 'OPTIONS... type HTTPHeaders (line 294) | type HTTPHeaders = { [key: string]: string }; type HTTPQuery (line 295) | type HTTPQuery = { [key: string]: string | number | null | boolean | Arr... type HTTPBody (line 296) | type HTTPBody = Json | FormData | URLSearchParams; type HTTPRequestInit (line 297) | type HTTPRequestInit = { headers?: HTTPHeaders; method: HTTPMethod; cred... type ModelPropertyNaming (line 298) | type ModelPropertyNaming = 'camelCase' | 'snake_case' | 'PascalCase' | '... type InitOverrideFunction (line 300) | type InitOverrideFunction = (requestContext: { init: HTTPRequestInit, co... type FetchParams (line 302) | interface FetchParams { type RequestOpts (line 307) | interface RequestOpts { function querystring (line 315) | function querystring(params: HTTPQuery, prefix: string = ''): string { function querystringSingleKey (line 322) | function querystringSingleKey(key: string, value: string | number | null... function exists (line 342) | function exists(json: any, key: string) { function mapValues (line 347) | function mapValues(data: any, fn: (item: any) => any) { function canConsumeForm (line 354) | function canConsumeForm(consumes: Consume[]): boolean { type Consume (line 363) | interface Consume { type RequestContext (line 367) | interface RequestContext { type ResponseContext (line 373) | interface ResponseContext { type ErrorContext (line 380) | interface ErrorContext { type Middleware (line 388) | interface Middleware { type ApiResponse (line 394) | interface ApiResponse { type ResponseTransformer (line 399) | interface ResponseTransformer { class JSONApiResponse (line 403) | class JSONApiResponse { method constructor (line 404) | constructor(public raw: Response, private transformer: ResponseTransfo... method value (line 406) | async value(): Promise { class VoidApiResponse (line 411) | class VoidApiResponse { method constructor (line 412) | constructor(public raw: Response) {} method value (line 414) | async value(): Promise { class BlobApiResponse (line 419) | class BlobApiResponse { method constructor (line 420) | constructor(public raw: Response) {} method value (line 422) | async value(): Promise { class TextApiResponse (line 427) | class TextApiResponse { method constructor (line 428) | constructor(public raw: Response) {} method value (line 430) | async value(): Promise { FILE: vue3/src/service-worker.ts constant OFFLINE_CACHE_NAME (line 19) | const OFFLINE_CACHE_NAME = 'offline-html'; FILE: vue3/src/stores/MealPlanStore.ts function refreshLastUpdatedPeriod (line 58) | function refreshLastUpdatedPeriod() { function refreshFromAPI (line 62) | function refreshFromAPI(from_date: Date, to_date: Date) { function recLoadMealPlans (line 76) | function recLoadMealPlans(from_date: Date, to_date: Date, page: number =... function createOrUpdate (line 100) | function createOrUpdate(object: MealPlan) { function createObject (line 108) | function createObject(object: MealPlan) { function updateObject (line 122) | function updateObject(object: MealPlan) { function deleteObject (line 132) | function deleteObject(object: MealPlan) { FILE: vue3/src/stores/MessageStore.ts type MessageType (line 10) | enum MessageType { type ErrorMessageType (line 18) | enum ErrorMessageType { type PreparedMessage (line 26) | enum PreparedMessage { type StructuredMessage (line 39) | interface StructuredMessage { class Message (line 47) | class Message { method constructor (line 55) | constructor(type: MessageType, msg: string | StructuredMessage, showTi... method toString (line 73) | toString() { function addMessage (line 91) | function addMessage(type: MessageType, msg: string | StructuredMessage, ... function addError (line 109) | function addError(errorType: ErrorMessageType | string, data?: any) { function addPreparedMessage (line 140) | function addPreparedMessage(preparedMessage: PreparedMessage, data?: any) { function flattenObject (line 174) | function flattenObject(obj: any, keyPrefix = '') { function deleteAllMessages (line 188) | function deleteAllMessages() { FILE: vue3/src/stores/ShoppingStore.ts constant UNDEFINED_CATEGORY (line 32) | const UNDEFINED_CATEGORY = 'shopping_undefined_category' function updateEntriesStructure (line 61) | function updateEntriesStructure() { function getEntriesStructure (line 74) | function getEntriesStructure(mealPlanId: number | undefined = undefined) { function updateEntryInShoppingList (line 132) | function updateEntryInShoppingList(entry: ShoppingListEntry) { function getFlatEntries (line 179) | function getFlatEntries() { function hasFailedItems (line 200) | function hasFailedItems() { function refreshFromAPI (line 213) | function refreshFromAPI(mealPlanId?: number) { function recLoadShoppingListEntries (line 248) | function recLoadShoppingListEntries(requestParameters: ApiShoppingListEn... function autoSync (line 283) | function autoSync() { function createObject (line 308) | function createObject(object: ShoppingListEntry, undo: boolean) { function updateObject (line 330) | function updateObject(object: ShoppingListEntry) { function deleteObject (line 351) | function deleteObject(object: ShoppingListEntry, undo: boolean) { function getAssociatedRecipes (line 379) | function getAssociatedRecipes(): ShoppingListRecipe[] { function getEntryCategoryKey (line 396) | function getEntryCategoryKey(object: ShoppingListEntry) { function updateEntryInStructure (line 423) | function updateEntryInStructure(structure: IShoppingList, entry: Shoppin... function setEntriesCheckedState (line 448) | function setEntriesCheckedState(entries: ShoppingListEntry[], checked: b... function _replaySyncQueue (line 478) | function _replaySyncQueue() { function runSyncQueue (line 527) | function runSyncQueue(timeout: number) { function setEntriesDelayedState (line 541) | function setEntriesDelayedState(entries: ShoppingListEntry[], delay: boo... function setFoodIgnoredState (line 560) | function setFoodIgnoredState(entries: ShoppingListEntry[], ignored: bool... function deleteEntries (line 588) | function deleteEntries(entries: ShoppingListEntry[]) { function deleteShoppingListRecipe (line 594) | function deleteShoppingListRecipe(shopping_list_recipe_id: number) { function registerChange (line 618) | function registerChange(type: ShoppingOperationHistoryType, entries: Sho... function undoChange (line 625) | function undoChange() { function updateCategories (line 654) | function updateCategories(shoppingListFoods: IShoppingListFood[], catego... function updateEntryShoppingLists (line 672) | function updateEntryShoppingLists(entries: ShoppingListEntry[], shopping... function loadShoppingLists (line 698) | function loadShoppingLists() { FILE: vue3/src/stores/UserPreferenceStore.ts constant DEVICE_SETTINGS_KEY (line 12) | const DEVICE_SETTINGS_KEY = 'TANDOOR_DEVICE_SETTINGS' constant USER_PREFERENCE_KEY (line 13) | const USER_PREFERENCE_KEY = 'TANDOOR_USER_PREFERENCE' constant SERVER_SETTINGS_KEY (line 14) | const SERVER_SETTINGS_KEY = 'TANDOOR_SERVER_SETTINGS' constant ACTIVE_SPACE_KEY (line 15) | const ACTIVE_SPACE_KEY = 'TANDOOR_ACTIVE_SPACE' constant USER_SPACES_KEY (line 16) | const USER_SPACES_KEY = 'TANDOOR_USER_SPACES' constant SPACES_KEY (line 17) | const SPACES_KEY = 'TANDOOR_SPACES' function loadUserSettings (line 83) | function loadUserSettings() { function loadDefaultUnit (line 106) | function loadDefaultUnit() { function updateUserSettings (line 127) | function updateUserSettings(silent: boolean = false) { function loadServerSettings (line 144) | function loadServerSettings() { function loadActiveSpace (line 156) | function loadActiveSpace() { function loadUserSpaces (line 170) | function loadUserSpaces() { function loadSpaces (line 185) | function loadSpaces() { function switchSpace (line 200) | function switchSpace(space: Space) { function resetDeviceSettings (line 217) | function resetDeviceSettings() { function getDefaultDeviceSettings (line 224) | function getDefaultDeviceSettings(): DeviceSettings { function updateTheme (line 259) | function updateTheme() { function init (line 267) | function init() { FILE: vue3/src/types/FoodFilters.ts type BooleanFilter (line 8) | interface BooleanFilter { type FoodFilters (line 16) | interface FoodFilters { type BooleanFilterDefinition (line 32) | interface BooleanFilterDefinition { FILE: vue3/src/types/MealPlan.ts type IMealPlanCalendarItem (line 4) | interface IMealPlanCalendarItem { type IMealPlanNormalizedCalendarItem (line 10) | interface IMealPlanNormalizedCalendarItem extends ICalendarItem { FILE: vue3/src/types/Models.ts type VDataTableProps (line 24) | type VDataTableProps = InstanceType['$props'] function getGenericModelFromString (line 33) | function getGenericModelFromString(modelName: EditorSupportedModels, t: ... function registerModel (line 45) | function registerModel(model: Model) { function getListModels (line 52) | function getListModels() { type GenericListRequestParameter (line 65) | type GenericListRequestParameter = { type DeleteRelationRequestParameter (line 74) | type DeleteRelationRequestParameter = { type ModelTableHeaders (line 88) | type ModelTableHeaders = { type Model (line 98) | type Model = { constant SUPPORTED_MODELS (line 126) | let SUPPORTED_MODELS = new Map() type EditorSupportedModels (line 129) | type EditorSupportedModels = type EditorSupportedTypes (line 172) | type EditorSupportedTypes = class GenericModel (line 1054) | class GenericModel { method constructor (line 1067) | constructor(model: Model, t: any) { method getTableHeaders (line 1073) | getTableHeaders(): VDataTableProps['headers'][] { method list (line 1089) | list(genericListRequestParameter: GenericListRequestParameter) { method create (line 1103) | create(obj: EditorSupportedTypes) { method update (line 1120) | update(id: number, obj: EditorSupportedTypes) { method retrieve (line 1137) | retrieve(id: number) { method destroy (line 1153) | destroy(id: number) { method merge (line 1168) | merge(source: EditorSupportedTypes, target: EditorSupportedTypes) { method move (line 1184) | move(source: EditorSupportedTypes, parentId: number) { method getDeleteProtecting (line 1200) | getDeleteProtecting(deleteRelationRequestParameter: DeleteRelationRequ... method getDeleteCascading (line 1209) | getDeleteCascading(deleteRelationRequestParameter: DeleteRelationReque... method getDeleteNulling (line 1218) | getDeleteNulling(deleteRelationRequestParameter: DeleteRelationRequest... method getLabel (line 1226) | getLabel(obj: EditorSupportedTypes) { FILE: vue3/src/types/Plugins.ts type TandoorPlugin (line 4) | type TandoorPlugin = { type PluginModule (line 22) | type PluginModule = { constant TANDOOR_PLUGINS (line 27) | let TANDOOR_PLUGINS = [] as TandoorPlugin[] FILE: vue3/src/types/SearchTypes.ts type SearchResult (line 1) | interface SearchResult { FILE: vue3/src/types/Shopping.ts type ShoppingGroupingOptions (line 6) | enum ShoppingGroupingOptions { type IShoppingList (line 16) | interface IShoppingList { type IShoppingListCategory (line 23) | interface IShoppingListCategory { type IShoppingListFood (line 31) | interface IShoppingListFood { type ShoppingLineAmount (line 36) | type ShoppingLineAmount = { type IShoppingExportEntry (line 47) | interface IShoppingExportEntry { type IShoppingSyncQueueEntry (line 56) | interface IShoppingSyncQueueEntry { type ShoppingListStats (line 65) | type ShoppingListStats = { type ShoppingOperationHistoryType (line 81) | type ShoppingOperationHistoryType = 'CHECKED' | 'UNCHECKED' | 'DELAY' | ... type ShoppingOperationHistoryEntry (line 86) | type ShoppingOperationHistoryEntry = { type ShoppingDialogRecipe (line 91) | type ShoppingDialogRecipe = { type ShoppingDialogRecipeEntry (line 96) | type ShoppingDialogRecipeEntry = { FILE: vue3/src/types/settings.ts type DeviceSettings (line 3) | type DeviceSettings = { FILE: vue3/src/utils/breakpoint_utils.ts function homePageCols (line 2) | function homePageCols(breakpoint: string){ FILE: vue3/src/utils/cookie.ts function getCookie (line 5) | function getCookie(name: string) { FILE: vue3/src/utils/date_utils.ts function shiftDateRange (line 9) | function shiftDateRange(dateRange: Date[], dayModifier: number) { function adjustDateRangeLength (line 24) | function adjustDateRangeLength(dateRange: Date[], dayModifier: number) { FILE: vue3/src/utils/fdc.ts function openFdcPage (line 5) | function openFdcPage(fdcId: number){ constant FDC_PROPERTY_TYPES (line 12) | const FDC_PROPERTY_TYPES = [ FILE: vue3/src/utils/integration_utils.ts type Integration (line 3) | type Integration = { constant INTEGRATIONS (line 12) | const INTEGRATIONS: Array = [ FILE: vue3/src/utils/logic_utils.ts function isEntryVisible (line 13) | function isEntryVisible(entry: ShoppingListEntry, deviceSettings: Device... function isShoppingListFoodVisible (line 38) | function isShoppingListFoodVisible(slf: IShoppingListFood, deviceSetting... function isDelayed (line 50) | function isDelayed(entry: ShoppingListEntry) { function isShoppingListFoodDelayed (line 59) | function isShoppingListFoodDelayed(slf: IShoppingListFood) { function isShoppingCategoryVisible (line 71) | function isShoppingCategoryVisible(category: IShoppingListCategory) { function isSpaceAboveLimit (line 89) | function isSpaceAboveLimit(space: Space) { function isSpaceAboveUserLimit (line 97) | function isSpaceAboveUserLimit(space: Space) { function isSpaceAboveRecipeLimit (line 105) | function isSpaceAboveRecipeLimit(space: Space) { function isSpaceAtRecipeLimit (line 113) | function isSpaceAtRecipeLimit(space: Space) { function isSpaceAboveStorageLimit (line 121) | function isSpaceAboveStorageLimit(space: Space) { FILE: vue3/src/utils/model_utils.ts function ingredientToString (line 7) | function ingredientToString(ingredient: Ingredient) { function ingredientToFoodString (line 35) | function ingredientToFoodString(ingredient: Ingredient, ingredientFactor... function pluralString (line 49) | function pluralString(object: Food | Unit, amount: number = 1, alwaysUse... function ingredientToUnitString (line 66) | function ingredientToUnitString(ingredient: Ingredient, ingredientFactor... function getRecipeIngredients (line 89) | function getRecipeIngredients(recipe: Recipe, t: any, options: { showSte... FILE: vue3/src/utils/number_utils.ts function roundDecimals (line 7) | function roundDecimals(num: number) { function calculateFoodAmount (line 21) | function calculateFoodAmount(amount: number, factor: number, useFraction... function frac (line 55) | function frac(x, D, mixed) { FILE: vue3/src/utils/step_utils.ts type StepLike (line 5) | interface StepLike { function splitStepObject (line 16) | function splitStepObject(step: T, split_character: s... function splitAllSteps (line 33) | function splitAllSteps(orig_steps: T[], split_charac... function splitStep (line 51) | function splitStep(steps: T[], step: T, split_charac... function mergeStep (line 66) | function mergeStep(step1: Step, step2: Step) { function mergeAllSteps (line 77) | function mergeAllSteps(steps: Step[] | SourceImportStep[]) { FILE: vue3/src/utils/utils.ts function getNestedProperty (line 13) | function getNestedProperty(object: any, path: string): any { function uploadRecipeImage (line 30) | function uploadRecipeImage(recipeId: number, file: File) { function toNumberArray (line 58) | function toNumberArray(param: string | string[]): number[] { function stringToBool (line 66) | function stringToBool(param: string): boolean | undefined { FILE: vue3/src/vuetify.ts type VDataTableUpdateOptions (line 122) | type VDataTableUpdateOptions = { constant VUETIFY_LOCALES (line 130) | const VUETIFY_LOCALES = new Set(Object.keys(vuetifyLocales)) constant VUETIFY_LOCALE_MAP (line 132) | const VUETIFY_LOCALE_MAP: Record = { function toVuetifyLocale (line 142) | function toVuetifyLocale(djangoCode: string): string { FILE: vue3/vite.config.ts constant LOCALE_MIN_COVERAGE (line 67) | const LOCALE_MIN_COVERAGE = 25 function localeCoveragePlugin (line 74) | function localeCoveragePlugin(): Plugin { function collectBuildInputs (line 173) | async function collectBuildInputs() {