anchorbrowser 0.5.3__py3-none-any.whl → 0.6.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- anchorbrowser/_base_client.py +1 -1
- anchorbrowser/_client.py +8 -1
- anchorbrowser/_version.py +1 -1
- anchorbrowser/resources/__init__.py +14 -0
- anchorbrowser/resources/applications/__init__.py +33 -0
- anchorbrowser/resources/applications/applications.py +715 -0
- anchorbrowser/resources/applications/auth_flows.py +547 -0
- anchorbrowser/resources/identities.py +453 -1
- anchorbrowser/resources/sessions/sessions.py +14 -0
- anchorbrowser/types/__init__.py +20 -0
- anchorbrowser/types/application_create_identity_token_params.py +17 -0
- anchorbrowser/types/application_create_identity_token_response.py +23 -0
- anchorbrowser/types/application_create_params.py +18 -0
- anchorbrowser/types/application_create_response.py +25 -0
- anchorbrowser/types/application_delete_response.py +12 -0
- anchorbrowser/types/application_list_identities_params.py +12 -0
- anchorbrowser/types/application_list_identities_response.py +33 -0
- anchorbrowser/types/application_list_params.py +12 -0
- anchorbrowser/types/application_list_response.py +41 -0
- anchorbrowser/types/application_retrieve_response.py +37 -0
- anchorbrowser/types/applications/__init__.py +10 -0
- anchorbrowser/types/applications/auth_flow_create_params.py +30 -0
- anchorbrowser/types/applications/auth_flow_create_response.py +39 -0
- anchorbrowser/types/applications/auth_flow_delete_response.py +12 -0
- anchorbrowser/types/applications/auth_flow_list_response.py +43 -0
- anchorbrowser/types/applications/auth_flow_update_params.py +32 -0
- anchorbrowser/types/applications/auth_flow_update_response.py +39 -0
- anchorbrowser/types/identity_create_params.py +84 -0
- anchorbrowser/types/identity_create_response.py +26 -0
- anchorbrowser/types/identity_delete_response.py +12 -0
- anchorbrowser/types/identity_retrieve_response.py +32 -0
- anchorbrowser/types/identity_update_params.py +70 -0
- anchorbrowser/types/identity_update_response.py +22 -0
- anchorbrowser/types/session_create_params.py +15 -0
- {anchorbrowser-0.5.3.dist-info → anchorbrowser-0.6.0.dist-info}/METADATA +1 -1
- {anchorbrowser-0.5.3.dist-info → anchorbrowser-0.6.0.dist-info}/RECORD +38 -12
- {anchorbrowser-0.5.3.dist-info → anchorbrowser-0.6.0.dist-info}/licenses/LICENSE +1 -1
- {anchorbrowser-0.5.3.dist-info → anchorbrowser-0.6.0.dist-info}/WHEEL +0 -0
|
@@ -20,6 +20,7 @@ __all__ = [
|
|
|
20
20
|
"BrowserPopupBlocker",
|
|
21
21
|
"BrowserProfile",
|
|
22
22
|
"BrowserViewport",
|
|
23
|
+
"Identity",
|
|
23
24
|
"Integration",
|
|
24
25
|
"IntegrationConfiguration",
|
|
25
26
|
"IntegrationConfigurationOnePasswordAllSecretsConfig",
|
|
@@ -38,6 +39,13 @@ class SessionCreateParams(TypedDict, total=False):
|
|
|
38
39
|
browser: Browser
|
|
39
40
|
"""Browser-specific configurations."""
|
|
40
41
|
|
|
42
|
+
identities: Iterable[Identity]
|
|
43
|
+
"""Activates an authenticated session.
|
|
44
|
+
|
|
45
|
+
**Beta** Capability. [Contact support](mailto:support@anchorbrowser.io) to
|
|
46
|
+
enable.
|
|
47
|
+
"""
|
|
48
|
+
|
|
41
49
|
integrations: Iterable[Integration]
|
|
42
50
|
"""Array of integrations to load in the browser session.
|
|
43
51
|
|
|
@@ -189,6 +197,13 @@ class Browser(TypedDict, total=False):
|
|
|
189
197
|
"""Configuration for the browser's viewport size."""
|
|
190
198
|
|
|
191
199
|
|
|
200
|
+
class Identity(TypedDict, total=False):
|
|
201
|
+
"""Previously configured identity to be used for the authenticated session."""
|
|
202
|
+
|
|
203
|
+
id: str
|
|
204
|
+
"""The identity ID to use for the browser session."""
|
|
205
|
+
|
|
206
|
+
|
|
192
207
|
class IntegrationConfigurationOnePasswordAllSecretsConfig(TypedDict, total=False):
|
|
193
208
|
load_mode: Required[Literal["all"]]
|
|
194
209
|
"""Load all secrets from 1Password"""
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.3
|
|
2
2
|
Name: anchorbrowser
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.6.0
|
|
4
4
|
Summary: The official Python library for the anchorbrowser API
|
|
5
5
|
Project-URL: Homepage, https://github.com/anchorbrowser/AnchorBrowser-SDK-Python
|
|
6
6
|
Project-URL: Repository, https://github.com/anchorbrowser/AnchorBrowser-SDK-Python
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
anchorbrowser/__init__.py,sha256=Wl16NhVAsaRBCpDtHZjZXDY31QMKfCIRNjzJcfb8D9E,2728
|
|
2
|
-
anchorbrowser/_base_client.py,sha256=
|
|
3
|
-
anchorbrowser/_client.py,sha256=
|
|
2
|
+
anchorbrowser/_base_client.py,sha256=pfPT47zcYQABinhwqxooCtHN3QxePomTWcwdri8YOsA,67254
|
|
3
|
+
anchorbrowser/_client.py,sha256=f-ni-vEhhMDK0w82fXDhO-yhROkyPEgIoD3L1Kpu7Xc,19599
|
|
4
4
|
anchorbrowser/_compat.py,sha256=DQBVORjFb33zch24jzkhM14msvnzY7mmSmgDLaVFUM8,6562
|
|
5
5
|
anchorbrowser/_constants.py,sha256=5PS9gNlT7aVkf5APKjCI8lcWqII_saRiroEzDScVKEU,470
|
|
6
6
|
anchorbrowser/_exceptions.py,sha256=Qz7WOsYUFZ3bEoN28V-C9Wk-EvYerqP83-fMUINlZKQ,3234
|
|
@@ -11,7 +11,7 @@ anchorbrowser/_resource.py,sha256=7lE1EgpVj5kwckk-27umtigTOf9nKTyRl97cgNwRbRQ,11
|
|
|
11
11
|
anchorbrowser/_response.py,sha256=xsiyWOC8LWW-NvbFtZ-MJD4f7eI9RnivKwtKImZ-8o4,28860
|
|
12
12
|
anchorbrowser/_streaming.py,sha256=ey2jst1hntYHV6HDiCFfHhWr_dUCSG4dG-VUqQkmCQ4,10249
|
|
13
13
|
anchorbrowser/_types.py,sha256=nAsmJDL_VDIWprgQ9LdTLnW1NtUssCOAD8OKIqeaHQ8,7302
|
|
14
|
-
anchorbrowser/_version.py,sha256=
|
|
14
|
+
anchorbrowser/_version.py,sha256=Y7UegWUIhY7-jhO43tkHZNil7tvxqA0PAzz9OVT6rys,165
|
|
15
15
|
anchorbrowser/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
16
16
|
anchorbrowser/_utils/__init__.py,sha256=7fch0GT9zpNnErbciSpUNa-SjTxxjY6kxHxKMOM4AGs,2305
|
|
17
17
|
anchorbrowser/_utils/_compat.py,sha256=D8gtAvjJQrDWt9upS0XaG9Rr5l1QhiAx_I_1utT_tt0,1195
|
|
@@ -28,21 +28,24 @@ anchorbrowser/_utils/_utils.py,sha256=ugfUaneOK7I8h9b3656flwf5u_kthY0gvNuqvgOLoS
|
|
|
28
28
|
anchorbrowser/lib/.keep,sha256=wuNrz-5SXo3jJaJOJgz4vFHM41YH_g20F5cRQo0vLes,224
|
|
29
29
|
anchorbrowser/lib/agent.py,sha256=8Se6hKIbGQIbhON4BpDzA8HhFbubDgbry4MN-WeT8Xg,3711
|
|
30
30
|
anchorbrowser/lib/browser.py,sha256=Bq1HBeoxErULdMG8DajDglp3dUP68XMiW94C8YDCleE,6387
|
|
31
|
-
anchorbrowser/resources/__init__.py,sha256=
|
|
31
|
+
anchorbrowser/resources/__init__.py,sha256=9dv_oPSt9xCrVtlTsyPhFyfef2LreNaYgvmwCF8YvyE,3897
|
|
32
32
|
anchorbrowser/resources/agent.py,sha256=xq-kcychfQTmCDfdjjQWmBWLlFf03DnW-BoK4oRPdfc,20185
|
|
33
33
|
anchorbrowser/resources/browser.py,sha256=BB5hq_ayIDL_ziYHq13oj8US3XkHzkoXiGLBm7h9dH0,5548
|
|
34
34
|
anchorbrowser/resources/events.py,sha256=B6TwziBmOVMjWwoFO7OJR2X_Jt_3jtzNhQg4lgY-7SE,10780
|
|
35
35
|
anchorbrowser/resources/extensions.py,sha256=KWySN-tu8Cxy-LbY3TXLNMPs1s5Hzwwk7Rmr1AYLVeU,15943
|
|
36
|
-
anchorbrowser/resources/identities.py,sha256=
|
|
36
|
+
anchorbrowser/resources/identities.py,sha256=Dm5H4oVpZQVJT2xVocrKaTfd9fUzYFa74uOz6xiX8Fo,23696
|
|
37
37
|
anchorbrowser/resources/profiles.py,sha256=g6xLjfmdXfRM5QV-N-omShpSPO_jMvRRmxKjOllq5RQ,16206
|
|
38
38
|
anchorbrowser/resources/task.py,sha256=mimwjwBWvSDbXUYhjq7fVpbmGbsxDkBVEmxDTHiVeTQ,16580
|
|
39
39
|
anchorbrowser/resources/tools.py,sha256=P9PQ8Md08RCCD1l4jbjuo-2C-SKxVPnHBuqkzOKrKjc,26384
|
|
40
|
+
anchorbrowser/resources/applications/__init__.py,sha256=l-NtHBcE8rngI0MYy5C56dxZxgVx_Jeq3i3TVLpo0Xk,1120
|
|
41
|
+
anchorbrowser/resources/applications/applications.py,sha256=lhQIjdp0SKYeLkmTau0BLg7t_33ZNSHQ1CUjHUWyAr0,27666
|
|
42
|
+
anchorbrowser/resources/applications/auth_flows.py,sha256=rw28rvN1hqa4Z99kko-gKsEoIkL-Gy7NrjihCiWKwXI,21423
|
|
40
43
|
anchorbrowser/resources/sessions/__init__.py,sha256=51tmuaKqEsEMfFTtZOovPAid6vYyKLkv6quuFBnQSiY,3330
|
|
41
44
|
anchorbrowser/resources/sessions/all.py,sha256=5iN5Vv6UW-2p07lEqiRHw3fFQC4m_acfvsn3yZVi_g0,7193
|
|
42
45
|
anchorbrowser/resources/sessions/clipboard.py,sha256=RuoY6Ev5oKsuk0KhPgtRk5GXCjqCk2D16e2hXzRY-4I,9572
|
|
43
46
|
anchorbrowser/resources/sessions/keyboard.py,sha256=qeHOvmTC2cA_AcEyXBCTzp6QyjN-cU6BZBq603Ex49g,11024
|
|
44
47
|
anchorbrowser/resources/sessions/mouse.py,sha256=OA9kcEfTCFVRzwPah799f3LqkB8u1x80H7NLxNn2m_o,16154
|
|
45
|
-
anchorbrowser/resources/sessions/sessions.py,sha256=
|
|
48
|
+
anchorbrowser/resources/sessions/sessions.py,sha256=6nGoafJwkz_530LdABx570qfUvFIuEKHmh78EVLZ1Bk,56909
|
|
46
49
|
anchorbrowser/resources/sessions/agent/__init__.py,sha256=xhYEyZLlwYxvBVBNX6FfdOYz9B5Ps4bHXNG_LY1KuDU,976
|
|
47
50
|
anchorbrowser/resources/sessions/agent/agent.py,sha256=VnrjYHkp6jDv3mYUUnfC6xxcrjwO1Uwm5bWAY85We8w,10013
|
|
48
51
|
anchorbrowser/resources/sessions/agent/files.py,sha256=E5pFDXEeaqJAN7DfE774WWJMf-MsXv_tw_KAPsEcfrA,11461
|
|
@@ -50,7 +53,17 @@ anchorbrowser/resources/sessions/recordings/__init__.py,sha256=MRWTb2Kwpc-wGBrca
|
|
|
50
53
|
anchorbrowser/resources/sessions/recordings/primary.py,sha256=p739aM0tU6CUx2KAgbo2O0oS-5T438Ho7SeUH9eSKXI,6569
|
|
51
54
|
anchorbrowser/resources/sessions/recordings/recordings.py,sha256=LtaT51hX5GWdl21ypu2SGKzEHJHfsjWhJkqAy_fjWGo,13746
|
|
52
55
|
anchorbrowser/resources/task/run.py,sha256=wgh4guYSaeysvEmbnxBZtrrZXTJGv62aiacXPqxM3MU,7919
|
|
53
|
-
anchorbrowser/types/__init__.py,sha256=
|
|
56
|
+
anchorbrowser/types/__init__.py,sha256=_qp2JNZonkiTurIEgiSvkRParlv5mFJArE98rGFV7FE,5052
|
|
57
|
+
anchorbrowser/types/application_create_identity_token_params.py,sha256=eLDfH8aT1nr_-qW6kmaq_5ilZr1YukWz1JMioShktE8,534
|
|
58
|
+
anchorbrowser/types/application_create_identity_token_response.py,sha256=P1BrPeb0DlIq8DluP-QxA3WsetpNIM4xgwUV5kqZihM,630
|
|
59
|
+
anchorbrowser/types/application_create_params.py,sha256=KDXFpTx3N8SuzJ8kQiXL79FNt4zcIC1Dur0d5fSaIck,451
|
|
60
|
+
anchorbrowser/types/application_create_response.py,sha256=Jd5o6wZHSlur9mV1fJDB3ZXwXcCsRZuTen0mtlYwGeM,648
|
|
61
|
+
anchorbrowser/types/application_delete_response.py,sha256=tT5fyzqObHk7fD3qFqBEvJFbxHbhB3XBBumZvgX91aM,316
|
|
62
|
+
anchorbrowser/types/application_list_identities_params.py,sha256=vHkAHeOkQKmp7TyNMsFC5cJVUyZefcac9TJm8Xc0GNI,343
|
|
63
|
+
anchorbrowser/types/application_list_identities_response.py,sha256=7FoaWqpTIOobV_8HLlFXdI9_xxxbn6MhKYcjKaEy7WA,944
|
|
64
|
+
anchorbrowser/types/application_list_params.py,sha256=fWzRWvd6H5-QpLMQu46JX5KZMG6VC3tAWYIua2jiohI,325
|
|
65
|
+
anchorbrowser/types/application_list_response.py,sha256=57AOZsd91MfnIdLScGcSRCRGrTBciRWcsSTPXvX7SZY,1171
|
|
66
|
+
anchorbrowser/types/application_retrieve_response.py,sha256=u3BDJ_ucR7HZSwF-X8Z_OE59ppYUx_VTNHPfR00VgGY,1079
|
|
54
67
|
anchorbrowser/types/event_signal_params.py,sha256=aEq0J4fq3YBGz3LLo2jtQH5GQUmfXj8Nuk-VFnnXRs8,372
|
|
55
68
|
anchorbrowser/types/event_wait_for_params.py,sha256=hyBubY4vBGTtX5AfS6KhkTQHseWKCdhSY4TIzyxPqAo,448
|
|
56
69
|
anchorbrowser/types/event_wait_for_response.py,sha256=QDjO9rVVpn34OGb5q6eQqrve1rSzzhaT8lPl_TCRXOs,319
|
|
@@ -60,12 +73,18 @@ anchorbrowser/types/extension_manifest.py,sha256=jgQzqKbPODPjEPiGPcEjCXx6yBdgFXZ
|
|
|
60
73
|
anchorbrowser/types/extension_retrieve_response.py,sha256=wBpk7gNgAbVf1etsCSrC4JOrKD6c_9HTv2S2FjNiAiM,807
|
|
61
74
|
anchorbrowser/types/extension_upload_params.py,sha256=bBd8BMRVHu6P18jJovVMLPnIzGXGlV8Geb8TdiuGPbQ,470
|
|
62
75
|
anchorbrowser/types/extension_upload_response.py,sha256=ee8KYWIb-AjURMzrtAMNUTjV3Izhj6AB0LeAvR0npvk,868
|
|
76
|
+
anchorbrowser/types/identity_create_params.py,sha256=McK5P2---ht6OdVKs_CbSAXPt_z46d-u3zkSmfRIrG8,2404
|
|
77
|
+
anchorbrowser/types/identity_create_response.py,sha256=Hus1K-ImrN1yHwAsWouMJ_PzHINY2tk0r6QviP4KOgM,736
|
|
78
|
+
anchorbrowser/types/identity_delete_response.py,sha256=PJbGX_ytQfsogZlG61eMvwB1pRhxRwFk2qiooR3oarI,297
|
|
63
79
|
anchorbrowser/types/identity_retrieve_credentials_response.py,sha256=JEbMSc2IJ-z9BGbBAmfR7V2a1YRisFNkfA1mhoyFxMA,1930
|
|
80
|
+
anchorbrowser/types/identity_retrieve_response.py,sha256=Sp-XTx6gWtQrkYwsnwx08lhpttnG_DHf48nZI--sCTA,910
|
|
81
|
+
anchorbrowser/types/identity_update_params.py,sha256=WkLA9jAGoAy7EWCc3kA6hFJbWjTP6ZdTF-rbthUa6Ig,1759
|
|
82
|
+
anchorbrowser/types/identity_update_response.py,sha256=g2DDgN4SZqe9o0kKRvhYBTGZxFhKgz0wJsiWw7AuXzQ,598
|
|
64
83
|
anchorbrowser/types/profile_create_params.py,sha256=JU53ky-FAMbjHPFQzA70H63qrgvyZDmxU6v8CaUcriI,839
|
|
65
84
|
anchorbrowser/types/profile_list_response.py,sha256=8mDdiQ_YHaKeAzVbzw9D9XbFbyLL1MSBaJQN9dE1xeE,1041
|
|
66
85
|
anchorbrowser/types/profile_retrieve_response.py,sha256=OW5f6dcJfWUJUl1uKFQmwul5Uw4J5iyxP-f4vP19ufc,891
|
|
67
86
|
anchorbrowser/types/session_copy_response.py,sha256=S6SzIEYrjLATuBWk5xCuT3QhVqE1ztWr-5UomASXL7g,289
|
|
68
|
-
anchorbrowser/types/session_create_params.py,sha256=
|
|
87
|
+
anchorbrowser/types/session_create_params.py,sha256=Kv3r4saV74NIRZxB7_sOCHkb2C_0tJ9zqRhSGHir5xA,11592
|
|
69
88
|
anchorbrowser/types/session_create_response.py,sha256=SKTtGQlEfLwfdQ9e8n5kETeYXHdwhnDPaXw6Myx584k,539
|
|
70
89
|
anchorbrowser/types/session_drag_and_drop_params.py,sha256=z3q4hyiRKkW7Vq8bo1Q1ryGS2FEzlfv5cw1p8qvXmcs,795
|
|
71
90
|
anchorbrowser/types/session_drag_and_drop_response.py,sha256=mxxEdrYAdbgR0khm8wPTYcZRXae5Xf1m35WAc1g9irU,270
|
|
@@ -91,6 +110,13 @@ anchorbrowser/types/tool_fetch_webpage_response.py,sha256=hdbrNgPz_LeWa3_aVbtck-
|
|
|
91
110
|
anchorbrowser/types/tool_perform_web_task_params.py,sha256=rFEGtjZWtXA8wLLp36GLt9NuD7HO0dKSqDHp5GfFZYA,2219
|
|
92
111
|
anchorbrowser/types/tool_perform_web_task_response.py,sha256=c7GCKQxXNql6UxXDXcRcetxUg0lOHd5lB4DdbKoKwh4,400
|
|
93
112
|
anchorbrowser/types/tool_screenshot_webpage_params.py,sha256=a7p4nCi6mQRJvTZD3wYDa67UGsB4v4CqOhW6x8-9Rrk,1344
|
|
113
|
+
anchorbrowser/types/applications/__init__.py,sha256=6a12R2eq4EsnzZ4gFKtVUJGqs0lL2TvKZYrnT97sn3k,633
|
|
114
|
+
anchorbrowser/types/applications/auth_flow_create_params.py,sha256=ohcUEAuTAG4CDWrvKK8X6al2X7rNxB_X1IIZFgOQ6zg,877
|
|
115
|
+
anchorbrowser/types/applications/auth_flow_create_response.py,sha256=GLbv23KtuLVUHis3Zp1MLUUvytopq6Hec2k9AEK95KM,1122
|
|
116
|
+
anchorbrowser/types/applications/auth_flow_delete_response.py,sha256=7BCd1dNYn8COMIMp-Xu5-1CEI3HpYq9tgTZ6eptWUpE,311
|
|
117
|
+
anchorbrowser/types/applications/auth_flow_list_response.py,sha256=9xwPPmcWwz6mYwNKcHab6BbNpU4WFJQZ9SzBmH3z_yo,1231
|
|
118
|
+
anchorbrowser/types/applications/auth_flow_update_params.py,sha256=kV4OALmUEcB-1J9iNXeyDcCc1a0QqzBGBJcVwm1pmMw,892
|
|
119
|
+
anchorbrowser/types/applications/auth_flow_update_response.py,sha256=thxnOosEMhS7TagZqnRjXhHchkNHFTZ8jcFy9oCSi30,1122
|
|
94
120
|
anchorbrowser/types/sessions/__init__.py,sha256=kiMjL-pt4Umx2DAnt8UP8lo4eM9X_UBDXO7JdYBzpcs,1493
|
|
95
121
|
anchorbrowser/types/sessions/all_status_response.py,sha256=h4uwmS47nHkHWbRJO2Sb9h_tEaysxvWcpaNyZO-IXxo,701
|
|
96
122
|
anchorbrowser/types/sessions/clipboard_get_response.py,sha256=L6bnLDmRurfMIXJwK_y1CqITsOSLufR-5C_m9k4ccnM,362
|
|
@@ -116,7 +142,7 @@ anchorbrowser/types/sessions/agent/file_upload_response.py,sha256=9DnqplfvEud89U
|
|
|
116
142
|
anchorbrowser/types/sessions/recordings/__init__.py,sha256=OKfJYcKb4NObdiRObqJV_dOyDQ8feXekDUge2o_4pXQ,122
|
|
117
143
|
anchorbrowser/types/shared/__init__.py,sha256=FQKjY3VDxI8T0feNRazdY5TOqb2KDeEwZaoJjsxuEl4,152
|
|
118
144
|
anchorbrowser/types/shared/success_response.py,sha256=l9OWrucXoSjBdsx5QKdvBPFtxv8d0YdpYY6iL5cWWuc,314
|
|
119
|
-
anchorbrowser-0.
|
|
120
|
-
anchorbrowser-0.
|
|
121
|
-
anchorbrowser-0.
|
|
122
|
-
anchorbrowser-0.
|
|
145
|
+
anchorbrowser-0.6.0.dist-info/METADATA,sha256=aORF_BRYyYkew1hEwmfEQL5MTsE6-stRGgPShCDBgZc,15407
|
|
146
|
+
anchorbrowser-0.6.0.dist-info/WHEEL,sha256=C2FUgwZgiLbznR-k0b_5k3Ai_1aASOXDss3lzCUsUug,87
|
|
147
|
+
anchorbrowser-0.6.0.dist-info/licenses/LICENSE,sha256=RDcfjK9SJCPlF8nKJnQ33ZQqG4pFl5sBT9AOoTQXK5Q,11343
|
|
148
|
+
anchorbrowser-0.6.0.dist-info/RECORD,,
|
|
@@ -186,7 +186,7 @@
|
|
|
186
186
|
same "printed page" as the copyright notice for easier
|
|
187
187
|
identification within third-party archives.
|
|
188
188
|
|
|
189
|
-
Copyright
|
|
189
|
+
Copyright 2026 Anchorbrowser
|
|
190
190
|
|
|
191
191
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
192
192
|
you may not use this file except in compliance with the License.
|
|
File without changes
|