appwrite 25.0.0 → 25.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -18,6 +18,7 @@ module Appwrite
18
18
  }
19
19
 
20
20
  api_headers = {
21
+ "X-Appwrite-Project": @client.get_config('project'),
21
22
  }
22
23
 
23
24
  @client.call(
@@ -41,6 +42,7 @@ module Appwrite
41
42
  }
42
43
 
43
44
  api_headers = {
45
+ "X-Appwrite-Project": @client.get_config('project'),
44
46
  "content-type": 'application/json',
45
47
  }
46
48
 
@@ -77,6 +79,7 @@ module Appwrite
77
79
  }
78
80
 
79
81
  api_headers = {
82
+ "X-Appwrite-Project": @client.get_config('project'),
80
83
  "content-type": 'application/json',
81
84
  }
82
85
 
@@ -105,6 +108,7 @@ module Appwrite
105
108
  }
106
109
 
107
110
  api_headers = {
111
+ "X-Appwrite-Project": @client.get_config('project'),
108
112
  }
109
113
 
110
114
  @client.call(
@@ -152,6 +156,7 @@ module Appwrite
152
156
  }
153
157
 
154
158
  api_headers = {
159
+ "X-Appwrite-Project": @client.get_config('project'),
155
160
  "content-type": 'application/json',
156
161
  }
157
162
 
@@ -192,6 +197,7 @@ module Appwrite
192
197
  }
193
198
 
194
199
  api_headers = {
200
+ "X-Appwrite-Project": @client.get_config('project'),
195
201
  "content-type": 'application/json',
196
202
  }
197
203
 
@@ -222,6 +228,7 @@ module Appwrite
222
228
  }
223
229
 
224
230
  api_headers = {
231
+ "X-Appwrite-Project": @client.get_config('project'),
225
232
  }
226
233
 
227
234
  @client.call(
@@ -266,6 +273,7 @@ module Appwrite
266
273
  }
267
274
 
268
275
  api_headers = {
276
+ "X-Appwrite-Project": @client.get_config('project'),
269
277
  "content-type": 'application/json',
270
278
  }
271
279
 
@@ -297,6 +305,7 @@ module Appwrite
297
305
  }
298
306
 
299
307
  api_headers = {
308
+ "X-Appwrite-Project": @client.get_config('project'),
300
309
  "content-type": 'application/json',
301
310
  }
302
311
 
@@ -327,6 +336,7 @@ module Appwrite
327
336
  }
328
337
 
329
338
  api_headers = {
339
+ "X-Appwrite-Project": @client.get_config('project'),
330
340
  "content-type": 'application/json',
331
341
  }
332
342
 
@@ -356,6 +366,7 @@ module Appwrite
356
366
  }
357
367
 
358
368
  api_headers = {
369
+ "X-Appwrite-Project": @client.get_config('project'),
359
370
  }
360
371
 
361
372
  @client.call(
@@ -392,6 +403,7 @@ module Appwrite
392
403
  }
393
404
 
394
405
  api_headers = {
406
+ "X-Appwrite-Project": @client.get_config('project'),
395
407
  "content-type": 'application/json',
396
408
  }
397
409
 
@@ -423,6 +435,7 @@ module Appwrite
423
435
  }
424
436
 
425
437
  api_headers = {
438
+ "X-Appwrite-Project": @client.get_config('project'),
426
439
  }
427
440
 
428
441
  @client.call(
@@ -459,6 +472,7 @@ module Appwrite
459
472
  }
460
473
 
461
474
  api_headers = {
475
+ "X-Appwrite-Project": @client.get_config('project'),
462
476
  "content-type": 'application/json',
463
477
  }
464
478
 
@@ -490,6 +504,7 @@ module Appwrite
490
504
  }
491
505
 
492
506
  api_headers = {
507
+ "X-Appwrite-Project": @client.get_config('project'),
493
508
  "content-type": 'application/json',
494
509
  }
495
510
 
@@ -519,6 +534,7 @@ module Appwrite
519
534
  }
520
535
 
521
536
  api_headers = {
537
+ "X-Appwrite-Project": @client.get_config('project'),
522
538
  }
523
539
 
524
540
  @client.call(
@@ -531,10 +547,59 @@ module Appwrite
531
547
 
532
548
  end
533
549
 
550
+ # Update the OAuth2 server (OIDC provider) configuration.
551
+ #
552
+ # @param [] enabled Enable or disable the OAuth2 server.
553
+ # @param [String] authorization_url URL to your application with consent screen.
554
+ # @param [Array] scopes List of allowed OAuth2 scopes. Maximum of 100 scopes are allowed, each up to 128 characters long.
555
+ # @param [Integer] access_token_duration Access token duration in seconds for confidential clients (server-side apps that authenticate with a client secret). Leave empty to use default 8 hours.
556
+ # @param [Integer] refresh_token_duration Refresh token duration in seconds for confidential clients (server-side apps that authenticate with a client secret). Leave empty to use default 1 year.
557
+ # @param [Integer] public_access_token_duration Access token duration in seconds for public clients (SPAs, mobile, and native apps that cannot keep a client secret). Leave empty to use default 1 hour.
558
+ # @param [Integer] public_refresh_token_duration Refresh token duration in seconds for public clients (SPAs, mobile, and native apps that cannot keep a client secret). Leave empty to use default 30 days.
559
+ # @param [] confidential_pkce When enabled, PKCE is required for confidential clients (server-side flows using client_secret). PKCE is always required for public clients regardless of this setting.
560
+ #
561
+ # @return [Project]
562
+ def update_o_auth2_server(enabled:, authorization_url:, scopes: nil, access_token_duration: nil, refresh_token_duration: nil, public_access_token_duration: nil, public_refresh_token_duration: nil, confidential_pkce: nil)
563
+ api_path = '/project/oauth2-server'
564
+
565
+ if enabled.nil?
566
+ raise Appwrite::Exception.new('Missing required parameter: "enabled"')
567
+ end
568
+
569
+ if authorization_url.nil?
570
+ raise Appwrite::Exception.new('Missing required parameter: "authorizationUrl"')
571
+ end
572
+
573
+ api_params = {
574
+ enabled: enabled,
575
+ authorizationUrl: authorization_url,
576
+ scopes: scopes,
577
+ accessTokenDuration: access_token_duration,
578
+ refreshTokenDuration: refresh_token_duration,
579
+ publicAccessTokenDuration: public_access_token_duration,
580
+ publicRefreshTokenDuration: public_refresh_token_duration,
581
+ confidentialPkce: confidential_pkce,
582
+ }
583
+
584
+ api_headers = {
585
+ "X-Appwrite-Project": @client.get_config('project'),
586
+ "content-type": 'application/json',
587
+ }
588
+
589
+ @client.call(
590
+ method: 'PUT',
591
+ path: api_path,
592
+ headers: api_headers,
593
+ params: api_params,
594
+ response_type: Models::Project
595
+ )
596
+
597
+ end
598
+
534
599
  # Update the project OAuth2 Amazon configuration.
535
600
  #
536
601
  # @param [String] client_id 'Client ID' of Amazon OAuth2 app. For example: amzn1.application-oa2-client.87400c00000000000000000000063d5b2
537
- # @param [String] client_secret 'Client Secret' of Amazon OAuth2 app. For example: your-oauth2-client-secret
602
+ # @param [String] client_secret 'Client Secret' of Amazon OAuth2 app. For example: 79ffe4000000000000000000000000000000000000000000000000000002de55
538
603
  # @param [] enabled OAuth2 sign-in method status. Set to true to enable new session creation. Setting to true will trigger end-to-end credentials validation, and will throw if the credentials are invalid.
539
604
  #
540
605
  # @return [OAuth2Amazon]
@@ -548,6 +613,7 @@ module Appwrite
548
613
  }
549
614
 
550
615
  api_headers = {
616
+ "X-Appwrite-Project": @client.get_config('project'),
551
617
  "content-type": 'application/json',
552
618
  }
553
619
 
@@ -582,6 +648,7 @@ module Appwrite
582
648
  }
583
649
 
584
650
  api_headers = {
651
+ "X-Appwrite-Project": @client.get_config('project'),
585
652
  "content-type": 'application/json',
586
653
  }
587
654
 
@@ -598,7 +665,7 @@ module Appwrite
598
665
  # Update the project OAuth2 Auth0 configuration.
599
666
  #
600
667
  # @param [String] client_id 'Client ID' of Auth0 OAuth2 app. For example: OaOkIA000000000000000000005KLSYq
601
- # @param [String] client_secret 'Client Secret' of Auth0 OAuth2 app. For example: your-oauth2-client-secret
668
+ # @param [String] client_secret 'Client Secret' of Auth0 OAuth2 app. For example: zXz0000-00000000000000000000000000000-00000000000000000000PJafnF
602
669
  # @param [String] endpoint Domain of Auth0 instance. For example: example.us.auth0.com
603
670
  # @param [] enabled OAuth2 sign-in method status. Set to true to enable new session creation. Setting to true will trigger end-to-end credentials validation, and will throw if the credentials are invalid.
604
671
  #
@@ -614,6 +681,7 @@ module Appwrite
614
681
  }
615
682
 
616
683
  api_headers = {
684
+ "X-Appwrite-Project": @client.get_config('project'),
617
685
  "content-type": 'application/json',
618
686
  }
619
687
 
@@ -630,7 +698,7 @@ module Appwrite
630
698
  # Update the project OAuth2 Authentik configuration.
631
699
  #
632
700
  # @param [String] client_id 'Client ID' of Authentik OAuth2 app. For example: dTKOPa0000000000000000000000000000e7G8hv
633
- # @param [String] client_secret 'Client Secret' of Authentik OAuth2 app. For example: your-oauth2-client-secret
701
+ # @param [String] client_secret 'Client Secret' of Authentik OAuth2 app. For example: ntQadq000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000Hp5WK
634
702
  # @param [String] endpoint Domain of Authentik instance. For example: example.authentik.com
635
703
  # @param [] enabled OAuth2 sign-in method status. Set to true to enable new session creation. Setting to true will trigger end-to-end credentials validation, and will throw if the credentials are invalid.
636
704
  #
@@ -646,6 +714,7 @@ module Appwrite
646
714
  }
647
715
 
648
716
  api_headers = {
717
+ "X-Appwrite-Project": @client.get_config('project'),
649
718
  "content-type": 'application/json',
650
719
  }
651
720
 
@@ -662,7 +731,7 @@ module Appwrite
662
731
  # Update the project OAuth2 Autodesk configuration.
663
732
  #
664
733
  # @param [String] client_id 'Client ID' of Autodesk OAuth2 app. For example: 5zw90v00000000000000000000kVYXN7
665
- # @param [String] client_secret 'Client Secret' of Autodesk OAuth2 app. For example: your-oauth2-client-secret
734
+ # @param [String] client_secret 'Client Secret' of Autodesk OAuth2 app. For example: 7I000000000000MW
666
735
  # @param [] enabled OAuth2 sign-in method status. Set to true to enable new session creation. Setting to true will trigger end-to-end credentials validation, and will throw if the credentials are invalid.
667
736
  #
668
737
  # @return [OAuth2Autodesk]
@@ -676,6 +745,7 @@ module Appwrite
676
745
  }
677
746
 
678
747
  api_headers = {
748
+ "X-Appwrite-Project": @client.get_config('project'),
679
749
  "content-type": 'application/json',
680
750
  }
681
751
 
@@ -692,7 +762,7 @@ module Appwrite
692
762
  # Update the project OAuth2 Bitbucket configuration.
693
763
  #
694
764
  # @param [String] key 'Key' of Bitbucket OAuth2 app. For example: Knt70000000000ByRc
695
- # @param [String] secret 'Secret' of Bitbucket OAuth2 app. For example: your-oauth2-client-secret
765
+ # @param [String] secret 'Secret' of Bitbucket OAuth2 app. For example: NMfLZJ00000000000000000000TLQdDx
696
766
  # @param [] enabled OAuth2 sign-in method status. Set to true to enable new session creation. Setting to true will trigger end-to-end credentials validation, and will throw if the credentials are invalid.
697
767
  #
698
768
  # @return [OAuth2Bitbucket]
@@ -706,6 +776,7 @@ module Appwrite
706
776
  }
707
777
 
708
778
  api_headers = {
779
+ "X-Appwrite-Project": @client.get_config('project'),
709
780
  "content-type": 'application/json',
710
781
  }
711
782
 
@@ -722,7 +793,7 @@ module Appwrite
722
793
  # Update the project OAuth2 Bitly configuration.
723
794
  #
724
795
  # @param [String] client_id 'Client ID' of Bitly OAuth2 app. For example: d95151000000000000000000000000000067af9b
725
- # @param [String] client_secret 'Client Secret' of Bitly OAuth2 app. For example: your-oauth2-client-secret
796
+ # @param [String] client_secret 'Client Secret' of Bitly OAuth2 app. For example: a13e250000000000000000000000000000d73095
726
797
  # @param [] enabled OAuth2 sign-in method status. Set to true to enable new session creation. Setting to true will trigger end-to-end credentials validation, and will throw if the credentials are invalid.
727
798
  #
728
799
  # @return [OAuth2Bitly]
@@ -736,6 +807,7 @@ module Appwrite
736
807
  }
737
808
 
738
809
  api_headers = {
810
+ "X-Appwrite-Project": @client.get_config('project'),
739
811
  "content-type": 'application/json',
740
812
  }
741
813
 
@@ -752,7 +824,7 @@ module Appwrite
752
824
  # Update the project OAuth2 Box configuration.
753
825
  #
754
826
  # @param [String] client_id 'Client ID' of Box OAuth2 app. For example: deglcs00000000000000000000x2og6y
755
- # @param [String] client_secret 'Client Secret' of Box OAuth2 app. For example: your-oauth2-client-secret
827
+ # @param [String] client_secret 'Client Secret' of Box OAuth2 app. For example: OKM1f100000000000000000000eshEif
756
828
  # @param [] enabled OAuth2 sign-in method status. Set to true to enable new session creation. Setting to true will trigger end-to-end credentials validation, and will throw if the credentials are invalid.
757
829
  #
758
830
  # @return [OAuth2Box]
@@ -766,6 +838,7 @@ module Appwrite
766
838
  }
767
839
 
768
840
  api_headers = {
841
+ "X-Appwrite-Project": @client.get_config('project'),
769
842
  "content-type": 'application/json',
770
843
  }
771
844
 
@@ -782,7 +855,7 @@ module Appwrite
782
855
  # Update the project OAuth2 Dailymotion configuration.
783
856
  #
784
857
  # @param [String] api_key 'API Key' of Dailymotion OAuth2 app. For example: 07a9000000000000067f
785
- # @param [String] api_secret 'API Secret' of Dailymotion OAuth2 app. For example: your-oauth2-client-secret
858
+ # @param [String] api_secret 'API Secret' of Dailymotion OAuth2 app. For example: a399a90000000000000000000000000000d90639
786
859
  # @param [] enabled OAuth2 sign-in method status. Set to true to enable new session creation. Setting to true will trigger end-to-end credentials validation, and will throw if the credentials are invalid.
787
860
  #
788
861
  # @return [OAuth2Dailymotion]
@@ -796,6 +869,7 @@ module Appwrite
796
869
  }
797
870
 
798
871
  api_headers = {
872
+ "X-Appwrite-Project": @client.get_config('project'),
799
873
  "content-type": 'application/json',
800
874
  }
801
875
 
@@ -812,7 +886,7 @@ module Appwrite
812
886
  # Update the project OAuth2 Discord configuration.
813
887
  #
814
888
  # @param [String] client_id 'Client ID' of Discord OAuth2 app. For example: 950722000000343754
815
- # @param [String] client_secret 'Client Secret' of Discord OAuth2 app. For example: your-oauth2-client-secret
889
+ # @param [String] client_secret 'Client Secret' of Discord OAuth2 app. For example: YmPXnM000000000000000000002zFg5D
816
890
  # @param [] enabled OAuth2 sign-in method status. Set to true to enable new session creation. Setting to true will trigger end-to-end credentials validation, and will throw if the credentials are invalid.
817
891
  #
818
892
  # @return [OAuth2Discord]
@@ -826,6 +900,7 @@ module Appwrite
826
900
  }
827
901
 
828
902
  api_headers = {
903
+ "X-Appwrite-Project": @client.get_config('project'),
829
904
  "content-type": 'application/json',
830
905
  }
831
906
 
@@ -842,7 +917,7 @@ module Appwrite
842
917
  # Update the project OAuth2 Disqus configuration.
843
918
  #
844
919
  # @param [String] public_key 'Public Key, also known as API Key' of Disqus OAuth2 app. For example: cgegH70000000000000000000000000000000000000000000000000000Hr1nYX
845
- # @param [String] secret_key 'Secret Key, also known as API Secret' of Disqus OAuth2 app. For example: your-oauth2-client-secret
920
+ # @param [String] secret_key 'Secret Key, also known as API Secret' of Disqus OAuth2 app. For example: W7Bykj00000000000000000000000000000000000000000000000000003o43w9
846
921
  # @param [] enabled OAuth2 sign-in method status. Set to true to enable new session creation. Setting to true will trigger end-to-end credentials validation, and will throw if the credentials are invalid.
847
922
  #
848
923
  # @return [OAuth2Disqus]
@@ -856,6 +931,7 @@ module Appwrite
856
931
  }
857
932
 
858
933
  api_headers = {
934
+ "X-Appwrite-Project": @client.get_config('project'),
859
935
  "content-type": 'application/json',
860
936
  }
861
937
 
@@ -872,7 +948,7 @@ module Appwrite
872
948
  # Update the project OAuth2 Dropbox configuration.
873
949
  #
874
950
  # @param [String] app_key 'App Key' of Dropbox OAuth2 app. For example: jl000000000009t
875
- # @param [String] app_secret 'App Secret' of Dropbox OAuth2 app. For example: your-oauth2-client-secret
951
+ # @param [String] app_secret 'App Secret' of Dropbox OAuth2 app. For example: g200000000000vw
876
952
  # @param [] enabled OAuth2 sign-in method status. Set to true to enable new session creation. Setting to true will trigger end-to-end credentials validation, and will throw if the credentials are invalid.
877
953
  #
878
954
  # @return [OAuth2Dropbox]
@@ -886,6 +962,7 @@ module Appwrite
886
962
  }
887
963
 
888
964
  api_headers = {
965
+ "X-Appwrite-Project": @client.get_config('project'),
889
966
  "content-type": 'application/json',
890
967
  }
891
968
 
@@ -902,7 +979,7 @@ module Appwrite
902
979
  # Update the project OAuth2 Etsy configuration.
903
980
  #
904
981
  # @param [String] key_string 'Keystring' of Etsy OAuth2 app. For example: nsgzxh0000000000008j85a2
905
- # @param [String] shared_secret 'Shared Secret' of Etsy OAuth2 app. For example: your-oauth2-client-secret
982
+ # @param [String] shared_secret 'Shared Secret' of Etsy OAuth2 app. For example: tp000000ru
906
983
  # @param [] enabled OAuth2 sign-in method status. Set to true to enable new session creation. Setting to true will trigger end-to-end credentials validation, and will throw if the credentials are invalid.
907
984
  #
908
985
  # @return [OAuth2Etsy]
@@ -916,6 +993,7 @@ module Appwrite
916
993
  }
917
994
 
918
995
  api_headers = {
996
+ "X-Appwrite-Project": @client.get_config('project'),
919
997
  "content-type": 'application/json',
920
998
  }
921
999
 
@@ -932,7 +1010,7 @@ module Appwrite
932
1010
  # Update the project OAuth2 Facebook configuration.
933
1011
  #
934
1012
  # @param [String] app_id 'App ID' of Facebook OAuth2 app. For example: 260600000007694
935
- # @param [String] app_secret 'App Secret' of Facebook OAuth2 app. For example: your-oauth2-client-secret
1013
+ # @param [String] app_secret 'App Secret' of Facebook OAuth2 app. For example: 2d0b2800000000000000000000d38af4
936
1014
  # @param [] enabled OAuth2 sign-in method status. Set to true to enable new session creation. Setting to true will trigger end-to-end credentials validation, and will throw if the credentials are invalid.
937
1015
  #
938
1016
  # @return [OAuth2Facebook]
@@ -946,6 +1024,7 @@ module Appwrite
946
1024
  }
947
1025
 
948
1026
  api_headers = {
1027
+ "X-Appwrite-Project": @client.get_config('project'),
949
1028
  "content-type": 'application/json',
950
1029
  }
951
1030
 
@@ -962,7 +1041,7 @@ module Appwrite
962
1041
  # Update the project OAuth2 Figma configuration.
963
1042
  #
964
1043
  # @param [String] client_id 'Client ID' of Figma OAuth2 app. For example: byay5H0000000000VtiI40
965
- # @param [String] client_secret 'Client Secret' of Figma OAuth2 app. For example: your-oauth2-client-secret
1044
+ # @param [String] client_secret 'Client Secret' of Figma OAuth2 app. For example: yEpOYn0000000000000000004iIsU5
966
1045
  # @param [] enabled OAuth2 sign-in method status. Set to true to enable new session creation. Setting to true will trigger end-to-end credentials validation, and will throw if the credentials are invalid.
967
1046
  #
968
1047
  # @return [OAuth2Figma]
@@ -976,6 +1055,7 @@ module Appwrite
976
1055
  }
977
1056
 
978
1057
  api_headers = {
1058
+ "X-Appwrite-Project": @client.get_config('project'),
979
1059
  "content-type": 'application/json',
980
1060
  }
981
1061
 
@@ -992,7 +1072,7 @@ module Appwrite
992
1072
  # Update the project OAuth2 FusionAuth configuration.
993
1073
  #
994
1074
  # @param [String] client_id 'Client ID' of FusionAuth OAuth2 app. For example: b2222c00-0000-0000-0000-000000862097
995
- # @param [String] client_secret 'Client Secret' of FusionAuth OAuth2 app. For example: your-oauth2-client-secret
1075
+ # @param [String] client_secret 'Client Secret' of FusionAuth OAuth2 app. For example: Jx4s0C0000000000000000000000000000000wGqLsc
996
1076
  # @param [String] endpoint Domain of FusionAuth instance. For example: example.fusionauth.io
997
1077
  # @param [] enabled OAuth2 sign-in method status. Set to true to enable new session creation. Setting to true will trigger end-to-end credentials validation, and will throw if the credentials are invalid.
998
1078
  #
@@ -1008,6 +1088,7 @@ module Appwrite
1008
1088
  }
1009
1089
 
1010
1090
  api_headers = {
1091
+ "X-Appwrite-Project": @client.get_config('project'),
1011
1092
  "content-type": 'application/json',
1012
1093
  }
1013
1094
 
@@ -1024,7 +1105,7 @@ module Appwrite
1024
1105
  # Update the project OAuth2 GitHub configuration.
1025
1106
  #
1026
1107
  # @param [String] client_id 'OAuth2 app Client ID, or App ID' of GitHub OAuth2 app. For example: e4d87900000000540733. Example of wrong value: 370006
1027
- # @param [String] client_secret 'Client Secret' of GitHub OAuth2 app. For example: your-oauth2-client-secret
1108
+ # @param [String] client_secret 'Client Secret' of GitHub OAuth2 app. For example: 5e07c00000000000000000000000000000198bcc
1028
1109
  # @param [] enabled OAuth2 sign-in method status. Set to true to enable new session creation. Setting to true will trigger end-to-end credentials validation, and will throw if the credentials are invalid.
1029
1110
  #
1030
1111
  # @return [OAuth2Github]
@@ -1038,6 +1119,7 @@ module Appwrite
1038
1119
  }
1039
1120
 
1040
1121
  api_headers = {
1122
+ "X-Appwrite-Project": @client.get_config('project'),
1041
1123
  "content-type": 'application/json',
1042
1124
  }
1043
1125
 
@@ -1054,7 +1136,7 @@ module Appwrite
1054
1136
  # Update the project OAuth2 Gitlab configuration.
1055
1137
  #
1056
1138
  # @param [String] application_id 'Application ID' of Gitlab OAuth2 app. For example: d41ffe0000000000000000000000000000000000000000000000000000d5e252
1057
- # @param [String] secret 'Secret' of Gitlab OAuth2 app. For example: your-oauth2-client-secret
1139
+ # @param [String] secret 'Secret' of Gitlab OAuth2 app. For example: gloas-838cfa0000000000000000000000000000000000000000000000000000ecbb38
1058
1140
  # @param [String] endpoint Endpoint URL of self-hosted GitLab instance. For example: https://gitlab.com
1059
1141
  # @param [] enabled OAuth2 sign-in method status. Set to true to enable new session creation. Setting to true will trigger end-to-end credentials validation, and will throw if the credentials are invalid.
1060
1142
  #
@@ -1070,6 +1152,7 @@ module Appwrite
1070
1152
  }
1071
1153
 
1072
1154
  api_headers = {
1155
+ "X-Appwrite-Project": @client.get_config('project'),
1073
1156
  "content-type": 'application/json',
1074
1157
  }
1075
1158
 
@@ -1086,7 +1169,7 @@ module Appwrite
1086
1169
  # Update the project OAuth2 Google configuration.
1087
1170
  #
1088
1171
  # @param [String] client_id 'Client ID' of Google OAuth2 app. For example: 120000000095-92ifjb00000000000000000000g7ijfb.apps.googleusercontent.com
1089
- # @param [String] client_secret 'Client Secret' of Google OAuth2 app. For example: your-oauth2-client-secret
1172
+ # @param [String] client_secret 'Client Secret' of Google OAuth2 app. For example: GOCSPX-2k8gsR0000000000000000VNahJj
1090
1173
  # @param [Array] prompt Array of Google OAuth2 prompt values. If "none" is included, it must be the only element. "none" means: don't display any authentication or consent screens. Must not be specified with other values. "consent" means: prompt the user for consent. "select_account" means: prompt the user to select an account.
1091
1174
  # @param [] enabled OAuth2 sign-in method status. Set to true to enable new session creation. Setting to true will trigger end-to-end credentials validation, and will throw if the credentials are invalid.
1092
1175
  #
@@ -1102,6 +1185,7 @@ module Appwrite
1102
1185
  }
1103
1186
 
1104
1187
  api_headers = {
1188
+ "X-Appwrite-Project": @client.get_config('project'),
1105
1189
  "content-type": 'application/json',
1106
1190
  }
1107
1191
 
@@ -1118,7 +1202,7 @@ module Appwrite
1118
1202
  # Update the project OAuth2 Keycloak configuration.
1119
1203
  #
1120
1204
  # @param [String] client_id 'Client ID' of Keycloak OAuth2 app. For example: appwrite-o0000000st-app
1121
- # @param [String] client_secret 'Client Secret' of Keycloak OAuth2 app. For example: your-oauth2-client-secret
1205
+ # @param [String] client_secret 'Client Secret' of Keycloak OAuth2 app. For example: jdjrJd00000000000000000000HUsaZO
1122
1206
  # @param [String] endpoint Domain of Keycloak instance. For example: keycloak.example.com
1123
1207
  # @param [String] realm_name Keycloak realm name. For example: appwrite-realm
1124
1208
  # @param [] enabled OAuth2 sign-in method status. Set to true to enable new session creation. Setting to true will trigger end-to-end credentials validation, and will throw if the credentials are invalid.
@@ -1136,6 +1220,7 @@ module Appwrite
1136
1220
  }
1137
1221
 
1138
1222
  api_headers = {
1223
+ "X-Appwrite-Project": @client.get_config('project'),
1139
1224
  "content-type": 'application/json',
1140
1225
  }
1141
1226
 
@@ -1152,7 +1237,7 @@ module Appwrite
1152
1237
  # Update the project OAuth2 Kick configuration.
1153
1238
  #
1154
1239
  # @param [String] client_id 'Client ID' of Kick OAuth2 app. For example: 01KQ7C00000000000001MFHS32
1155
- # @param [String] client_secret 'Client Secret' of Kick OAuth2 app. For example: your-oauth2-client-secret
1240
+ # @param [String] client_secret 'Client Secret' of Kick OAuth2 app. For example: 34ac5600000000000000000000000000000000000000000000000000e830c8b
1156
1241
  # @param [] enabled OAuth2 sign-in method status. Set to true to enable new session creation. Setting to true will trigger end-to-end credentials validation, and will throw if the credentials are invalid.
1157
1242
  #
1158
1243
  # @return [OAuth2Kick]
@@ -1166,6 +1251,7 @@ module Appwrite
1166
1251
  }
1167
1252
 
1168
1253
  api_headers = {
1254
+ "X-Appwrite-Project": @client.get_config('project'),
1169
1255
  "content-type": 'application/json',
1170
1256
  }
1171
1257
 
@@ -1182,7 +1268,7 @@ module Appwrite
1182
1268
  # Update the project OAuth2 Linkedin configuration.
1183
1269
  #
1184
1270
  # @param [String] client_id 'Client ID' of Linkedin OAuth2 app. For example: 770000000000dv
1185
- # @param [String] primary_client_secret 'Primary Client Secret or Secondary Client Secret' of Linkedin OAuth2 app. For example: your-oauth2-client-secret
1271
+ # @param [String] primary_client_secret 'Primary Client Secret or Secondary Client Secret' of Linkedin OAuth2 app. For example: WPL_AP1.2Bf0000000000000./HtlYw==
1186
1272
  # @param [] enabled OAuth2 sign-in method status. Set to true to enable new session creation. Setting to true will trigger end-to-end credentials validation, and will throw if the credentials are invalid.
1187
1273
  #
1188
1274
  # @return [OAuth2Linkedin]
@@ -1196,6 +1282,7 @@ module Appwrite
1196
1282
  }
1197
1283
 
1198
1284
  api_headers = {
1285
+ "X-Appwrite-Project": @client.get_config('project'),
1199
1286
  "content-type": 'application/json',
1200
1287
  }
1201
1288
 
@@ -1212,7 +1299,7 @@ module Appwrite
1212
1299
  # Update the project OAuth2 Microsoft configuration.
1213
1300
  #
1214
1301
  # @param [String] application_id 'Entra ID Application ID, also known as Client ID' of Microsoft OAuth2 app. For example: 00001111-aaaa-2222-bbbb-3333cccc4444
1215
- # @param [String] application_secret 'Entra ID Application Secret, also known as Client Secret' of Microsoft OAuth2 app. For example: your-oauth2-client-secret
1302
+ # @param [String] application_secret 'Entra ID Application Secret, also known as Client Secret' of Microsoft OAuth2 app. For example: A1bC2dE3fH4iJ5kL6mN7oP8qR9sT0u
1216
1303
  # @param [String] tenant Microsoft Entra ID tenant identifier. Use 'common', 'organizations', 'consumers' or a specific tenant ID. For example: common
1217
1304
  # @param [] enabled OAuth2 sign-in method status. Set to true to enable new session creation. Setting to true will trigger end-to-end credentials validation, and will throw if the credentials are invalid.
1218
1305
  #
@@ -1228,6 +1315,7 @@ module Appwrite
1228
1315
  }
1229
1316
 
1230
1317
  api_headers = {
1318
+ "X-Appwrite-Project": @client.get_config('project'),
1231
1319
  "content-type": 'application/json',
1232
1320
  }
1233
1321
 
@@ -1244,7 +1332,7 @@ module Appwrite
1244
1332
  # Update the project OAuth2 Notion configuration.
1245
1333
  #
1246
1334
  # @param [String] oauth_client_id 'OAuth Client ID' of Notion OAuth2 app. For example: 341d8700-0000-0000-0000-000000446ee3
1247
- # @param [String] oauth_client_secret 'OAuth Client Secret' of Notion OAuth2 app. For example: your-oauth2-client-secret
1335
+ # @param [String] oauth_client_secret 'OAuth Client Secret' of Notion OAuth2 app. For example: secret_dLUr4b000000000000000000000000000000lFHAa9
1248
1336
  # @param [] enabled OAuth2 sign-in method status. Set to true to enable new session creation. Setting to true will trigger end-to-end credentials validation, and will throw if the credentials are invalid.
1249
1337
  #
1250
1338
  # @return [OAuth2Notion]
@@ -1258,6 +1346,7 @@ module Appwrite
1258
1346
  }
1259
1347
 
1260
1348
  api_headers = {
1349
+ "X-Appwrite-Project": @client.get_config('project'),
1261
1350
  "content-type": 'application/json',
1262
1351
  }
1263
1352
 
@@ -1274,7 +1363,7 @@ module Appwrite
1274
1363
  # Update the project OAuth2 Oidc configuration.
1275
1364
  #
1276
1365
  # @param [String] client_id 'Client ID' of Oidc OAuth2 app. For example: qibI2x0000000000000000000000000006L2YFoG
1277
- # @param [String] client_secret 'Client Secret' of Oidc OAuth2 app. For example: your-oauth2-client-secret
1366
+ # @param [String] client_secret 'Client Secret' of Oidc OAuth2 app. For example: Ah68ed000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003qpcHV
1278
1367
  # @param [String] well_known_url OpenID Connect well-known configuration URL. When provided, authorization, token, and user info endpoints can be discovered automatically. For example: https://myoauth.com/.well-known/openid-configuration
1279
1368
  # @param [String] authorization_url OpenID Connect authorization endpoint URL. Required when wellKnownURL is not provided. For example: https://myoauth.com/oauth2/authorize
1280
1369
  # @param [String] token_url OpenID Connect token endpoint URL. Required when wellKnownURL is not provided. For example: https://myoauth.com/oauth2/token
@@ -1296,6 +1385,7 @@ module Appwrite
1296
1385
  }
1297
1386
 
1298
1387
  api_headers = {
1388
+ "X-Appwrite-Project": @client.get_config('project'),
1299
1389
  "content-type": 'application/json',
1300
1390
  }
1301
1391
 
@@ -1312,7 +1402,7 @@ module Appwrite
1312
1402
  # Update the project OAuth2 Okta configuration.
1313
1403
  #
1314
1404
  # @param [String] client_id 'Client ID' of Okta OAuth2 app. For example: 0oa00000000000000698
1315
- # @param [String] client_secret 'Client Secret' of Okta OAuth2 app. For example: your-oauth2-client-secret
1405
+ # @param [String] client_secret 'Client Secret' of Okta OAuth2 app. For example: Kiq0000000000000000000000000000000000000-00000000000H2L5-3SJ-vRV
1316
1406
  # @param [String] domain Okta company domain. Required when enabling the provider. For example: trial-6400025.okta.com. Example of wrong value: trial-6400025-admin.okta.com, or https://trial-6400025.okta.com/
1317
1407
  # @param [String] authorization_server_id Custom Authorization Servers. Optional, can be left empty or unconfigured. For example: aus000000000000000h7z
1318
1408
  # @param [] enabled OAuth2 sign-in method status. Set to true to enable new session creation. Setting to true will trigger end-to-end credentials validation, and will throw if the credentials are invalid.
@@ -1330,6 +1420,7 @@ module Appwrite
1330
1420
  }
1331
1421
 
1332
1422
  api_headers = {
1423
+ "X-Appwrite-Project": @client.get_config('project'),
1333
1424
  "content-type": 'application/json',
1334
1425
  }
1335
1426
 
@@ -1346,7 +1437,7 @@ module Appwrite
1346
1437
  # Update the project OAuth2 Paypal configuration.
1347
1438
  #
1348
1439
  # @param [String] client_id 'Client ID' of Paypal OAuth2 app. For example: AdhIEG7-000000000000-0000000000000000000000000000000-0000000000000000000000-2pyB
1349
- # @param [String] secret_key 'Secret Key 1 or Secret Key 2' of Paypal OAuth2 app. For example: your-oauth2-client-secret
1440
+ # @param [String] secret_key 'Secret Key 1 or Secret Key 2' of Paypal OAuth2 app. For example: EH8KCXtew--000000000000000000000000000000000000000_C-1_5UP_000000000000000CB7KDp
1350
1441
  # @param [] enabled OAuth2 sign-in method status. Set to true to enable new session creation. Setting to true will trigger end-to-end credentials validation, and will throw if the credentials are invalid.
1351
1442
  #
1352
1443
  # @return [OAuth2Paypal]
@@ -1360,6 +1451,7 @@ module Appwrite
1360
1451
  }
1361
1452
 
1362
1453
  api_headers = {
1454
+ "X-Appwrite-Project": @client.get_config('project'),
1363
1455
  "content-type": 'application/json',
1364
1456
  }
1365
1457
 
@@ -1376,7 +1468,7 @@ module Appwrite
1376
1468
  # Update the project OAuth2 PaypalSandbox configuration.
1377
1469
  #
1378
1470
  # @param [String] client_id 'Client ID' of PaypalSandbox OAuth2 app. For example: AdhIEG7-000000000000-0000000000000000000000000000000-0000000000000000000000-2pyB
1379
- # @param [String] secret_key 'Secret Key 1 or Secret Key 2' of PaypalSandbox OAuth2 app. For example: your-oauth2-client-secret
1471
+ # @param [String] secret_key 'Secret Key 1 or Secret Key 2' of PaypalSandbox OAuth2 app. For example: EH8KCXtew--000000000000000000000000000000000000000_C-1_5UP_000000000000000CB7KDp
1380
1472
  # @param [] enabled OAuth2 sign-in method status. Set to true to enable new session creation. Setting to true will trigger end-to-end credentials validation, and will throw if the credentials are invalid.
1381
1473
  #
1382
1474
  # @return [OAuth2Paypal]
@@ -1390,6 +1482,7 @@ module Appwrite
1390
1482
  }
1391
1483
 
1392
1484
  api_headers = {
1485
+ "X-Appwrite-Project": @client.get_config('project'),
1393
1486
  "content-type": 'application/json',
1394
1487
  }
1395
1488
 
@@ -1406,7 +1499,7 @@ module Appwrite
1406
1499
  # Update the project OAuth2 Podio configuration.
1407
1500
  #
1408
1501
  # @param [String] client_id 'Client ID' of Podio OAuth2 app. For example: appwrite-o0000000st-app
1409
- # @param [String] client_secret 'Client Secret' of Podio OAuth2 app. For example: your-oauth2-client-secret
1502
+ # @param [String] client_secret 'Client Secret' of Podio OAuth2 app. For example: Rn247T0000000000000000000000000000000000000000000000000000W2zWTN
1410
1503
  # @param [] enabled OAuth2 sign-in method status. Set to true to enable new session creation. Setting to true will trigger end-to-end credentials validation, and will throw if the credentials are invalid.
1411
1504
  #
1412
1505
  # @return [OAuth2Podio]
@@ -1420,6 +1513,7 @@ module Appwrite
1420
1513
  }
1421
1514
 
1422
1515
  api_headers = {
1516
+ "X-Appwrite-Project": @client.get_config('project'),
1423
1517
  "content-type": 'application/json',
1424
1518
  }
1425
1519
 
@@ -1436,7 +1530,7 @@ module Appwrite
1436
1530
  # Update the project OAuth2 Salesforce configuration.
1437
1531
  #
1438
1532
  # @param [String] customer_key 'Consumer Key' of Salesforce OAuth2 app. For example: 3MVG9I0000000000000000000000000000000000000000000000000000000000000000000000000C5Aejq
1439
- # @param [String] customer_secret 'Consumer Secret' of Salesforce OAuth2 app. For example: your-oauth2-client-secret
1533
+ # @param [String] customer_secret 'Consumer Secret' of Salesforce OAuth2 app. For example: 3w000000000000e2
1440
1534
  # @param [] enabled OAuth2 sign-in method status. Set to true to enable new session creation. Setting to true will trigger end-to-end credentials validation, and will throw if the credentials are invalid.
1441
1535
  #
1442
1536
  # @return [OAuth2Salesforce]
@@ -1450,6 +1544,7 @@ module Appwrite
1450
1544
  }
1451
1545
 
1452
1546
  api_headers = {
1547
+ "X-Appwrite-Project": @client.get_config('project'),
1453
1548
  "content-type": 'application/json',
1454
1549
  }
1455
1550
 
@@ -1466,7 +1561,7 @@ module Appwrite
1466
1561
  # Update the project OAuth2 Slack configuration.
1467
1562
  #
1468
1563
  # @param [String] client_id 'Client ID' of Slack OAuth2 app. For example: 23000000089.15000000000023
1469
- # @param [String] client_secret 'Client Secret' of Slack OAuth2 app. For example: your-oauth2-client-secret
1564
+ # @param [String] client_secret 'Client Secret' of Slack OAuth2 app. For example: 81656000000000000000000000f3d2fd
1470
1565
  # @param [] enabled OAuth2 sign-in method status. Set to true to enable new session creation. Setting to true will trigger end-to-end credentials validation, and will throw if the credentials are invalid.
1471
1566
  #
1472
1567
  # @return [OAuth2Slack]
@@ -1480,6 +1575,7 @@ module Appwrite
1480
1575
  }
1481
1576
 
1482
1577
  api_headers = {
1578
+ "X-Appwrite-Project": @client.get_config('project'),
1483
1579
  "content-type": 'application/json',
1484
1580
  }
1485
1581
 
@@ -1496,7 +1592,7 @@ module Appwrite
1496
1592
  # Update the project OAuth2 Spotify configuration.
1497
1593
  #
1498
1594
  # @param [String] client_id 'Client ID' of Spotify OAuth2 app. For example: 6ec271000000000000000000009beace
1499
- # @param [String] client_secret 'Client Secret' of Spotify OAuth2 app. For example: your-oauth2-client-secret
1595
+ # @param [String] client_secret 'Client Secret' of Spotify OAuth2 app. For example: db068a000000000000000000008b5b9f
1500
1596
  # @param [] enabled OAuth2 sign-in method status. Set to true to enable new session creation. Setting to true will trigger end-to-end credentials validation, and will throw if the credentials are invalid.
1501
1597
  #
1502
1598
  # @return [OAuth2Spotify]
@@ -1510,6 +1606,7 @@ module Appwrite
1510
1606
  }
1511
1607
 
1512
1608
  api_headers = {
1609
+ "X-Appwrite-Project": @client.get_config('project'),
1513
1610
  "content-type": 'application/json',
1514
1611
  }
1515
1612
 
@@ -1526,7 +1623,7 @@ module Appwrite
1526
1623
  # Update the project OAuth2 Stripe configuration.
1527
1624
  #
1528
1625
  # @param [String] client_id 'Client ID' of Stripe OAuth2 app. For example: ca_UKibXX0000000000000000000006byvR
1529
- # @param [String] api_secret_key 'API Secret Key' of Stripe OAuth2 app. For example: your-oauth2-client-secret
1626
+ # @param [String] api_secret_key 'API Secret Key' of Stripe OAuth2 app. For example: sk_51SfOd000000000000000000000000000000000000000000000000000000000000000000000000000000000000000QGWYfp
1530
1627
  # @param [] enabled OAuth2 sign-in method status. Set to true to enable new session creation. Setting to true will trigger end-to-end credentials validation, and will throw if the credentials are invalid.
1531
1628
  #
1532
1629
  # @return [OAuth2Stripe]
@@ -1540,6 +1637,7 @@ module Appwrite
1540
1637
  }
1541
1638
 
1542
1639
  api_headers = {
1640
+ "X-Appwrite-Project": @client.get_config('project'),
1543
1641
  "content-type": 'application/json',
1544
1642
  }
1545
1643
 
@@ -1556,7 +1654,7 @@ module Appwrite
1556
1654
  # Update the project OAuth2 Tradeshift configuration.
1557
1655
  #
1558
1656
  # @param [String] oauth2_client_id 'OAuth2 Client ID' of Tradeshift OAuth2 app. For example: appwrite-tes00000.0000000000est-app
1559
- # @param [String] oauth2_client_secret 'OAuth2 Client Secret' of Tradeshift OAuth2 app. For example: your-oauth2-client-secret
1657
+ # @param [String] oauth2_client_secret 'OAuth2 Client Secret' of Tradeshift OAuth2 app. For example: 7cb52700-0000-0000-0000-000000ca5b83
1560
1658
  # @param [] enabled OAuth2 sign-in method status. Set to true to enable new session creation. Setting to true will trigger end-to-end credentials validation, and will throw if the credentials are invalid.
1561
1659
  #
1562
1660
  # @return [OAuth2Tradeshift]
@@ -1570,6 +1668,7 @@ module Appwrite
1570
1668
  }
1571
1669
 
1572
1670
  api_headers = {
1671
+ "X-Appwrite-Project": @client.get_config('project'),
1573
1672
  "content-type": 'application/json',
1574
1673
  }
1575
1674
 
@@ -1586,7 +1685,7 @@ module Appwrite
1586
1685
  # Update the project OAuth2 Tradeshift Sandbox configuration.
1587
1686
  #
1588
1687
  # @param [String] oauth2_client_id 'OAuth2 Client ID' of Tradeshift Sandbox OAuth2 app. For example: appwrite-tes00000.0000000000est-app
1589
- # @param [String] oauth2_client_secret 'OAuth2 Client Secret' of Tradeshift Sandbox OAuth2 app. For example: your-oauth2-client-secret
1688
+ # @param [String] oauth2_client_secret 'OAuth2 Client Secret' of Tradeshift Sandbox OAuth2 app. For example: 7cb52700-0000-0000-0000-000000ca5b83
1590
1689
  # @param [] enabled OAuth2 sign-in method status. Set to true to enable new session creation. Setting to true will trigger end-to-end credentials validation, and will throw if the credentials are invalid.
1591
1690
  #
1592
1691
  # @return [OAuth2Tradeshift]
@@ -1600,6 +1699,7 @@ module Appwrite
1600
1699
  }
1601
1700
 
1602
1701
  api_headers = {
1702
+ "X-Appwrite-Project": @client.get_config('project'),
1603
1703
  "content-type": 'application/json',
1604
1704
  }
1605
1705
 
@@ -1616,7 +1716,7 @@ module Appwrite
1616
1716
  # Update the project OAuth2 Twitch configuration.
1617
1717
  #
1618
1718
  # @param [String] client_id 'Client ID' of Twitch OAuth2 app. For example: vvi0in000000000000000000ikmt9p
1619
- # @param [String] client_secret 'Client Secret' of Twitch OAuth2 app. For example: your-oauth2-client-secret
1719
+ # @param [String] client_secret 'Client Secret' of Twitch OAuth2 app. For example: pmapue000000000000000000zylw3v
1620
1720
  # @param [] enabled OAuth2 sign-in method status. Set to true to enable new session creation. Setting to true will trigger end-to-end credentials validation, and will throw if the credentials are invalid.
1621
1721
  #
1622
1722
  # @return [OAuth2Twitch]
@@ -1630,6 +1730,7 @@ module Appwrite
1630
1730
  }
1631
1731
 
1632
1732
  api_headers = {
1733
+ "X-Appwrite-Project": @client.get_config('project'),
1633
1734
  "content-type": 'application/json',
1634
1735
  }
1635
1736
 
@@ -1646,7 +1747,7 @@ module Appwrite
1646
1747
  # Update the project OAuth2 WordPress configuration.
1647
1748
  #
1648
1749
  # @param [String] client_id 'Client ID' of WordPress OAuth2 app. For example: 130005
1649
- # @param [String] client_secret 'Client Secret' of WordPress OAuth2 app. For example: your-oauth2-client-secret
1750
+ # @param [String] client_secret 'Client Secret' of WordPress OAuth2 app. For example: PlBfJS0000000000000000000000000000000000000000000000000000EdUZJk
1650
1751
  # @param [] enabled OAuth2 sign-in method status. Set to true to enable new session creation. Setting to true will trigger end-to-end credentials validation, and will throw if the credentials are invalid.
1651
1752
  #
1652
1753
  # @return [OAuth2WordPress]
@@ -1660,6 +1761,7 @@ module Appwrite
1660
1761
  }
1661
1762
 
1662
1763
  api_headers = {
1764
+ "X-Appwrite-Project": @client.get_config('project'),
1663
1765
  "content-type": 'application/json',
1664
1766
  }
1665
1767
 
@@ -1676,7 +1778,7 @@ module Appwrite
1676
1778
  # Update the project OAuth2 X configuration.
1677
1779
  #
1678
1780
  # @param [String] customer_key 'Customer Key' of X OAuth2 app. For example: slzZV0000000000000NFLaWT
1679
- # @param [String] secret_key 'Secret Key' of X OAuth2 app. For example: your-oauth2-client-secret
1781
+ # @param [String] secret_key 'Secret Key' of X OAuth2 app. For example: tkEPkp00000000000000000000000000000000000000FTxbI9
1680
1782
  # @param [] enabled OAuth2 sign-in method status. Set to true to enable new session creation. Setting to true will trigger end-to-end credentials validation, and will throw if the credentials are invalid.
1681
1783
  #
1682
1784
  # @return [OAuth2X]
@@ -1690,6 +1792,7 @@ module Appwrite
1690
1792
  }
1691
1793
 
1692
1794
  api_headers = {
1795
+ "X-Appwrite-Project": @client.get_config('project'),
1693
1796
  "content-type": 'application/json',
1694
1797
  }
1695
1798
 
@@ -1706,7 +1809,7 @@ module Appwrite
1706
1809
  # Update the project OAuth2 Yahoo configuration.
1707
1810
  #
1708
1811
  # @param [String] client_id 'Client ID, also known as Customer Key' of Yahoo OAuth2 app. For example: dj0yJm000000000000000000000000000000000000000000000000000000000000000000000000000000000000Z4PWRm
1709
- # @param [String] client_secret 'Client Secret, also known as Customer Secret' of Yahoo OAuth2 app. For example: your-oauth2-client-secret
1812
+ # @param [String] client_secret 'Client Secret, also known as Customer Secret' of Yahoo OAuth2 app. For example: cf978f0000000000000000000000000000c5e2e9
1710
1813
  # @param [] enabled OAuth2 sign-in method status. Set to true to enable new session creation. Setting to true will trigger end-to-end credentials validation, and will throw if the credentials are invalid.
1711
1814
  #
1712
1815
  # @return [OAuth2Yahoo]
@@ -1720,6 +1823,7 @@ module Appwrite
1720
1823
  }
1721
1824
 
1722
1825
  api_headers = {
1826
+ "X-Appwrite-Project": @client.get_config('project'),
1723
1827
  "content-type": 'application/json',
1724
1828
  }
1725
1829
 
@@ -1736,7 +1840,7 @@ module Appwrite
1736
1840
  # Update the project OAuth2 Yandex configuration.
1737
1841
  #
1738
1842
  # @param [String] client_id 'Client ID' of Yandex OAuth2 app. For example: 6a8a6a0000000000000000000091483c
1739
- # @param [String] client_secret 'Client Secret' of Yandex OAuth2 app. For example: your-oauth2-client-secret
1843
+ # @param [String] client_secret 'Client Secret' of Yandex OAuth2 app. For example: bbf98500000000000000000000c75a63
1740
1844
  # @param [] enabled OAuth2 sign-in method status. Set to true to enable new session creation. Setting to true will trigger end-to-end credentials validation, and will throw if the credentials are invalid.
1741
1845
  #
1742
1846
  # @return [OAuth2Yandex]
@@ -1750,6 +1854,7 @@ module Appwrite
1750
1854
  }
1751
1855
 
1752
1856
  api_headers = {
1857
+ "X-Appwrite-Project": @client.get_config('project'),
1753
1858
  "content-type": 'application/json',
1754
1859
  }
1755
1860
 
@@ -1766,7 +1871,7 @@ module Appwrite
1766
1871
  # Update the project OAuth2 Zoho configuration.
1767
1872
  #
1768
1873
  # @param [String] client_id 'Client ID' of Zoho OAuth2 app. For example: 1000.83C178000000000000000000RPNX0B
1769
- # @param [String] client_secret 'Client Secret' of Zoho OAuth2 app. For example: your-oauth2-client-secret
1874
+ # @param [String] client_secret 'Client Secret' of Zoho OAuth2 app. For example: fb5cac000000000000000000000000000000a68f6e
1770
1875
  # @param [] enabled OAuth2 sign-in method status. Set to true to enable new session creation. Setting to true will trigger end-to-end credentials validation, and will throw if the credentials are invalid.
1771
1876
  #
1772
1877
  # @return [OAuth2Zoho]
@@ -1780,6 +1885,7 @@ module Appwrite
1780
1885
  }
1781
1886
 
1782
1887
  api_headers = {
1888
+ "X-Appwrite-Project": @client.get_config('project'),
1783
1889
  "content-type": 'application/json',
1784
1890
  }
1785
1891
 
@@ -1796,7 +1902,7 @@ module Appwrite
1796
1902
  # Update the project OAuth2 Zoom configuration.
1797
1903
  #
1798
1904
  # @param [String] client_id 'Client ID' of Zoom OAuth2 app. For example: QMAC00000000000000w0AQ
1799
- # @param [String] client_secret 'Client Secret' of Zoom OAuth2 app. For example: your-oauth2-client-secret
1905
+ # @param [String] client_secret 'Client Secret' of Zoom OAuth2 app. For example: GAWsG4000000000000000000007U01ON
1800
1906
  # @param [] enabled OAuth2 sign-in method status. Set to true to enable new session creation. Setting to true will trigger end-to-end credentials validation, and will throw if the credentials are invalid.
1801
1907
  #
1802
1908
  # @return [OAuth2Zoom]
@@ -1810,6 +1916,7 @@ module Appwrite
1810
1916
  }
1811
1917
 
1812
1918
  api_headers = {
1919
+ "X-Appwrite-Project": @client.get_config('project'),
1813
1920
  "content-type": 'application/json',
1814
1921
  }
1815
1922
 
@@ -1841,6 +1948,7 @@ module Appwrite
1841
1948
  }
1842
1949
 
1843
1950
  api_headers = {
1951
+ "X-Appwrite-Project": @client.get_config('project'),
1844
1952
  }
1845
1953
 
1846
1954
  response = @client.call(
@@ -2074,6 +2182,7 @@ module Appwrite
2074
2182
  }
2075
2183
 
2076
2184
  api_headers = {
2185
+ "X-Appwrite-Project": @client.get_config('project'),
2077
2186
  }
2078
2187
 
2079
2188
  @client.call(
@@ -2117,6 +2226,7 @@ module Appwrite
2117
2226
  }
2118
2227
 
2119
2228
  api_headers = {
2229
+ "X-Appwrite-Project": @client.get_config('project'),
2120
2230
  "content-type": 'application/json',
2121
2231
  }
2122
2232
 
@@ -2160,6 +2270,7 @@ module Appwrite
2160
2270
  }
2161
2271
 
2162
2272
  api_headers = {
2273
+ "X-Appwrite-Project": @client.get_config('project'),
2163
2274
  "content-type": 'application/json',
2164
2275
  }
2165
2276
 
@@ -2204,6 +2315,7 @@ module Appwrite
2204
2315
  }
2205
2316
 
2206
2317
  api_headers = {
2318
+ "X-Appwrite-Project": @client.get_config('project'),
2207
2319
  "content-type": 'application/json',
2208
2320
  }
2209
2321
 
@@ -2247,6 +2359,7 @@ module Appwrite
2247
2359
  }
2248
2360
 
2249
2361
  api_headers = {
2362
+ "X-Appwrite-Project": @client.get_config('project'),
2250
2363
  "content-type": 'application/json',
2251
2364
  }
2252
2365
 
@@ -2291,6 +2404,7 @@ module Appwrite
2291
2404
  }
2292
2405
 
2293
2406
  api_headers = {
2407
+ "X-Appwrite-Project": @client.get_config('project'),
2294
2408
  "content-type": 'application/json',
2295
2409
  }
2296
2410
 
@@ -2334,6 +2448,7 @@ module Appwrite
2334
2448
  }
2335
2449
 
2336
2450
  api_headers = {
2451
+ "X-Appwrite-Project": @client.get_config('project'),
2337
2452
  "content-type": 'application/json',
2338
2453
  }
2339
2454
 
@@ -2378,6 +2493,7 @@ module Appwrite
2378
2493
  }
2379
2494
 
2380
2495
  api_headers = {
2496
+ "X-Appwrite-Project": @client.get_config('project'),
2381
2497
  "content-type": 'application/json',
2382
2498
  }
2383
2499
 
@@ -2421,6 +2537,7 @@ module Appwrite
2421
2537
  }
2422
2538
 
2423
2539
  api_headers = {
2540
+ "X-Appwrite-Project": @client.get_config('project'),
2424
2541
  "content-type": 'application/json',
2425
2542
  }
2426
2543
 
@@ -2465,6 +2582,7 @@ module Appwrite
2465
2582
  }
2466
2583
 
2467
2584
  api_headers = {
2585
+ "X-Appwrite-Project": @client.get_config('project'),
2468
2586
  "content-type": 'application/json',
2469
2587
  }
2470
2588
 
@@ -2508,6 +2626,7 @@ module Appwrite
2508
2626
  }
2509
2627
 
2510
2628
  api_headers = {
2629
+ "X-Appwrite-Project": @client.get_config('project'),
2511
2630
  "content-type": 'application/json',
2512
2631
  }
2513
2632
 
@@ -2539,6 +2658,7 @@ module Appwrite
2539
2658
  }
2540
2659
 
2541
2660
  api_headers = {
2661
+ "X-Appwrite-Project": @client.get_config('project'),
2542
2662
  }
2543
2663
 
2544
2664
  response = @client.call(
@@ -2599,6 +2719,7 @@ module Appwrite
2599
2719
  }
2600
2720
 
2601
2721
  api_headers = {
2722
+ "X-Appwrite-Project": @client.get_config('project'),
2602
2723
  "content-type": 'application/json',
2603
2724
  }
2604
2725
 
@@ -2626,6 +2747,7 @@ module Appwrite
2626
2747
  }
2627
2748
 
2628
2749
  api_headers = {
2750
+ "X-Appwrite-Project": @client.get_config('project'),
2629
2751
  }
2630
2752
 
2631
2753
  @client.call(
@@ -2656,6 +2778,7 @@ module Appwrite
2656
2778
  }
2657
2779
 
2658
2780
  api_headers = {
2781
+ "X-Appwrite-Project": @client.get_config('project'),
2659
2782
  "content-type": 'application/json',
2660
2783
  }
2661
2784
 
@@ -2687,6 +2810,7 @@ module Appwrite
2687
2810
  }
2688
2811
 
2689
2812
  api_headers = {
2813
+ "X-Appwrite-Project": @client.get_config('project'),
2690
2814
  "content-type": 'application/json',
2691
2815
  }
2692
2816
 
@@ -2718,6 +2842,7 @@ module Appwrite
2718
2842
  }
2719
2843
 
2720
2844
  api_headers = {
2845
+ "X-Appwrite-Project": @client.get_config('project'),
2721
2846
  "content-type": 'application/json',
2722
2847
  }
2723
2848
 
@@ -2754,6 +2879,7 @@ module Appwrite
2754
2879
  }
2755
2880
 
2756
2881
  api_headers = {
2882
+ "X-Appwrite-Project": @client.get_config('project'),
2757
2883
  "content-type": 'application/json',
2758
2884
  }
2759
2885
 
@@ -2786,6 +2912,7 @@ module Appwrite
2786
2912
  }
2787
2913
 
2788
2914
  api_headers = {
2915
+ "X-Appwrite-Project": @client.get_config('project'),
2789
2916
  "content-type": 'application/json',
2790
2917
  }
2791
2918
 
@@ -2824,6 +2951,7 @@ module Appwrite
2824
2951
  }
2825
2952
 
2826
2953
  api_headers = {
2954
+ "X-Appwrite-Project": @client.get_config('project'),
2827
2955
  "content-type": 'application/json',
2828
2956
  }
2829
2957
 
@@ -2857,6 +2985,7 @@ module Appwrite
2857
2985
  }
2858
2986
 
2859
2987
  api_headers = {
2988
+ "X-Appwrite-Project": @client.get_config('project'),
2860
2989
  "content-type": 'application/json',
2861
2990
  }
2862
2991
 
@@ -2870,6 +2999,41 @@ module Appwrite
2870
2999
 
2871
3000
  end
2872
3001
 
3002
+ # Update the password strength requirements for users in the project.
3003
+ #
3004
+ # @param [Integer] min Minimum password length. Value must be between 8 and 256. Default is 8.
3005
+ # @param [] uppercase Whether passwords must include at least one uppercase letter.
3006
+ # @param [] lowercase Whether passwords must include at least one lowercase letter.
3007
+ # @param [] number Whether passwords must include at least one number.
3008
+ # @param [] symbols Whether passwords must include at least one symbol.
3009
+ #
3010
+ # @return [PolicyPasswordStrength]
3011
+ def update_password_strength_policy(min: nil, uppercase: nil, lowercase: nil, number: nil, symbols: nil)
3012
+ api_path = '/project/policies/password-strength'
3013
+
3014
+ api_params = {
3015
+ min: min,
3016
+ uppercase: uppercase,
3017
+ lowercase: lowercase,
3018
+ number: number,
3019
+ symbols: symbols,
3020
+ }
3021
+
3022
+ api_headers = {
3023
+ "X-Appwrite-Project": @client.get_config('project'),
3024
+ "content-type": 'application/json',
3025
+ }
3026
+
3027
+ @client.call(
3028
+ method: 'PATCH',
3029
+ path: api_path,
3030
+ headers: api_headers,
3031
+ params: api_params,
3032
+ response_type: Models::PolicyPasswordStrength
3033
+ )
3034
+
3035
+ end
3036
+
2873
3037
  # Updating this policy allows you to control if email alert is sent upon
2874
3038
  # session creation. When enabled, and user signs into their account, they
2875
3039
  # will be sent an email notification. There is an exception, the first
@@ -2891,6 +3055,7 @@ module Appwrite
2891
3055
  }
2892
3056
 
2893
3057
  api_headers = {
3058
+ "X-Appwrite-Project": @client.get_config('project'),
2894
3059
  "content-type": 'application/json',
2895
3060
  }
2896
3061
 
@@ -2922,6 +3087,7 @@ module Appwrite
2922
3087
  }
2923
3088
 
2924
3089
  api_headers = {
3090
+ "X-Appwrite-Project": @client.get_config('project'),
2925
3091
  "content-type": 'application/json',
2926
3092
  }
2927
3093
 
@@ -2954,6 +3120,7 @@ module Appwrite
2954
3120
  }
2955
3121
 
2956
3122
  api_headers = {
3123
+ "X-Appwrite-Project": @client.get_config('project'),
2957
3124
  "content-type": 'application/json',
2958
3125
  }
2959
3126
 
@@ -2985,6 +3152,7 @@ module Appwrite
2985
3152
  }
2986
3153
 
2987
3154
  api_headers = {
3155
+ "X-Appwrite-Project": @client.get_config('project'),
2988
3156
  "content-type": 'application/json',
2989
3157
  }
2990
3158
 
@@ -3017,6 +3185,7 @@ module Appwrite
3017
3185
  }
3018
3186
 
3019
3187
  api_headers = {
3188
+ "X-Appwrite-Project": @client.get_config('project'),
3020
3189
  "content-type": 'application/json',
3021
3190
  }
3022
3191
 
@@ -3033,9 +3202,9 @@ module Appwrite
3033
3202
  # Get a policy by its unique ID. This endpoint returns the current
3034
3203
  # configuration for the requested project policy.
3035
3204
  #
3036
- # @param [ProjectPolicyId] policy_id Policy ID. Can be one of: password-dictionary, password-history, password-personal-data, session-alert, session-duration, session-invalidation, session-limit, user-limit, membership-privacy, deny-aliased-email, deny-disposable-email, deny-free-email.
3205
+ # @param [ProjectPolicyId] policy_id Policy ID. Can be one of: password-dictionary, password-history, password-strength, password-personal-data, session-alert, session-duration, session-invalidation, session-limit, user-limit, membership-privacy, deny-aliased-email, deny-disposable-email, deny-free-email.
3037
3206
  #
3038
- # @return [PolicyPasswordDictionary, PolicyPasswordHistory, PolicyPasswordPersonalData, PolicySessionAlert, PolicySessionDuration, PolicySessionInvalidation, PolicySessionLimit, PolicyUserLimit, PolicyMembershipPrivacy, PolicyDenyAliasedEmail, PolicyDenyDisposableEmail, PolicyDenyFreeEmail]
3207
+ # @return [PolicyPasswordDictionary, PolicyPasswordHistory, PolicyPasswordStrength, PolicyPasswordPersonalData, PolicySessionAlert, PolicySessionDuration, PolicySessionInvalidation, PolicySessionLimit, PolicyUserLimit, PolicyMembershipPrivacy, PolicyDenyAliasedEmail, PolicyDenyDisposableEmail, PolicyDenyFreeEmail]
3039
3208
  def get_policy(policy_id:)
3040
3209
  api_path = '/project/policies/{policyId}'
3041
3210
  .gsub('{policyId}', policy_id)
@@ -3048,6 +3217,7 @@ module Appwrite
3048
3217
  }
3049
3218
 
3050
3219
  api_headers = {
3220
+ "X-Appwrite-Project": @client.get_config('project'),
3051
3221
  }
3052
3222
 
3053
3223
  response = @client.call(
@@ -3071,6 +3241,11 @@ module Appwrite
3071
3241
  return Models::PolicyPasswordHistory.from(map: response)
3072
3242
  end
3073
3243
 
3244
+ if response['$id'] == 'password-strength'
3245
+
3246
+ return Models::PolicyPasswordStrength.from(map: response)
3247
+ end
3248
+
3074
3249
  if response['$id'] == 'password-personal-data'
3075
3250
 
3076
3251
  return Models::PolicyPasswordPersonalData.from(map: response)
@@ -3149,6 +3324,7 @@ module Appwrite
3149
3324
  }
3150
3325
 
3151
3326
  api_headers = {
3327
+ "X-Appwrite-Project": @client.get_config('project'),
3152
3328
  "content-type": 'application/json',
3153
3329
  }
3154
3330
 
@@ -3186,6 +3362,7 @@ module Appwrite
3186
3362
  }
3187
3363
 
3188
3364
  api_headers = {
3365
+ "X-Appwrite-Project": @client.get_config('project'),
3189
3366
  "content-type": 'application/json',
3190
3367
  }
3191
3368
 
@@ -3232,6 +3409,7 @@ module Appwrite
3232
3409
  }
3233
3410
 
3234
3411
  api_headers = {
3412
+ "X-Appwrite-Project": @client.get_config('project'),
3235
3413
  "content-type": 'application/json',
3236
3414
  }
3237
3415
 
@@ -3262,6 +3440,7 @@ module Appwrite
3262
3440
  }
3263
3441
 
3264
3442
  api_headers = {
3443
+ "X-Appwrite-Project": @client.get_config('project'),
3265
3444
  "content-type": 'application/json',
3266
3445
  }
3267
3446
 
@@ -3291,6 +3470,7 @@ module Appwrite
3291
3470
  }
3292
3471
 
3293
3472
  api_headers = {
3473
+ "X-Appwrite-Project": @client.get_config('project'),
3294
3474
  }
3295
3475
 
3296
3476
  @client.call(
@@ -3335,6 +3515,7 @@ module Appwrite
3335
3515
  }
3336
3516
 
3337
3517
  api_headers = {
3518
+ "X-Appwrite-Project": @client.get_config('project'),
3338
3519
  "content-type": 'application/json',
3339
3520
  }
3340
3521
 
@@ -3369,6 +3550,7 @@ module Appwrite
3369
3550
  }
3370
3551
 
3371
3552
  api_headers = {
3553
+ "X-Appwrite-Project": @client.get_config('project'),
3372
3554
  }
3373
3555
 
3374
3556
  @client.call(
@@ -3396,6 +3578,7 @@ module Appwrite
3396
3578
  }
3397
3579
 
3398
3580
  api_headers = {
3581
+ "X-Appwrite-Project": @client.get_config('project'),
3399
3582
  }
3400
3583
 
3401
3584
  @client.call(
@@ -3440,6 +3623,7 @@ module Appwrite
3440
3623
  }
3441
3624
 
3442
3625
  api_headers = {
3626
+ "X-Appwrite-Project": @client.get_config('project'),
3443
3627
  "content-type": 'application/json',
3444
3628
  }
3445
3629
 
@@ -3470,6 +3654,7 @@ module Appwrite
3470
3654
  }
3471
3655
 
3472
3656
  api_headers = {
3657
+ "X-Appwrite-Project": @client.get_config('project'),
3473
3658
  }
3474
3659
 
3475
3660
  @client.call(
@@ -3505,6 +3690,7 @@ module Appwrite
3505
3690
  }
3506
3691
 
3507
3692
  api_headers = {
3693
+ "X-Appwrite-Project": @client.get_config('project'),
3508
3694
  "content-type": 'application/json',
3509
3695
  }
3510
3696
 
@@ -3535,6 +3721,7 @@ module Appwrite
3535
3721
  }
3536
3722
 
3537
3723
  api_headers = {
3724
+ "X-Appwrite-Project": @client.get_config('project'),
3538
3725
  "content-type": 'application/json',
3539
3726
  }
3540
3727