@opusdns/api 0.78.0 → 0.79.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/src/helpers/constants.ts +1 -103
- package/src/helpers/keys.ts +245 -1279
- package/src/helpers/requests.d.ts +1 -173
- package/src/helpers/responses.d.ts +1 -352
- package/src/helpers/schemas-arrays.d.ts +1 -29
- package/src/helpers/schemas.d.ts +16 -176
- package/src/openapi.yaml +28 -520
- package/src/schema.d.ts +20 -528
package/src/helpers/keys.ts
CHANGED
|
@@ -33,7 +33,6 @@ import { AllowedNumberOfNameserverBase } from './schemas';
|
|
|
33
33
|
import { BillingMetadata } from './schemas';
|
|
34
34
|
import { BillingPlan } from './schemas';
|
|
35
35
|
import { BillingTransaction } from './schemas';
|
|
36
|
-
import { Body_issue_organization_token_v1_auth_token_post } from './schemas';
|
|
37
36
|
import { CheckoutSession } from './schemas';
|
|
38
37
|
import { ContactAttributeDefinition } from './schemas';
|
|
39
38
|
import { ContactConfigBase } from './schemas';
|
|
@@ -111,9 +110,6 @@ import { OrganizationAttributeCreate } from './schemas';
|
|
|
111
110
|
import { OrganizationAttribute2 } from './schemas';
|
|
112
111
|
import { OrganizationAttributeUpdate } from './schemas';
|
|
113
112
|
import { OrganizationCreate } from './schemas';
|
|
114
|
-
import { OrganizationCredential } from './schemas';
|
|
115
|
-
import { OrganizationCredentialCreated } from './schemas';
|
|
116
|
-
import { OrganizationCredentialExtra } from './schemas';
|
|
117
113
|
import { OrganizationToken } from './schemas';
|
|
118
114
|
import { OrganizationUpdate } from './schemas';
|
|
119
115
|
import { OrganizationWithBillingData } from './schemas';
|
|
@@ -127,23 +123,20 @@ import { PremiumDomainsBase } from './schemas';
|
|
|
127
123
|
import { PriceInfo } from './schemas';
|
|
128
124
|
import { PricingPeriod } from './schemas';
|
|
129
125
|
import { Problem } from './schemas';
|
|
126
|
+
import { PublicAuthRequestForm } from './schemas';
|
|
130
127
|
import { RdapBase } from './schemas';
|
|
131
128
|
import { RegistryLockBase } from './schemas';
|
|
132
129
|
import { RelationSet } from './schemas';
|
|
133
130
|
import { ReservedDomainsBase } from './schemas';
|
|
134
131
|
import { RgpOperations } from './schemas';
|
|
135
|
-
import { SignupCreate } from './schemas';
|
|
136
|
-
import { Signup } from './schemas';
|
|
137
132
|
import { SldLength } from './schemas';
|
|
138
133
|
import { SpiceDbRelationshipUpdate } from './schemas';
|
|
139
|
-
import { TermsOfServiceAccept } from './schemas';
|
|
140
134
|
import { TldBase } from './schemas';
|
|
141
135
|
import { TldResponseShort } from './schemas';
|
|
142
136
|
import { TldSpecification } from './schemas';
|
|
143
137
|
import { TrademarkClaimsBase } from './schemas';
|
|
144
138
|
import { TransferPoliciesBase } from './schemas';
|
|
145
139
|
import { User } from './schemas';
|
|
146
|
-
import { UserAgreementAcceptance } from './schemas';
|
|
147
140
|
import { UserAttributeBase } from './schemas';
|
|
148
141
|
import { UserCreate } from './schemas';
|
|
149
142
|
import { UserToken } from './schemas';
|
|
@@ -860,160 +853,6 @@ export const KEYS_BILLING_TRANSACTION = [
|
|
|
860
853
|
KEY_BILLING_TRANSACTION_UPDATED_ON,
|
|
861
854
|
] as const satisfies (keyof BillingTransaction)[];
|
|
862
855
|
|
|
863
|
-
/**
|
|
864
|
-
* Client Id
|
|
865
|
-
*
|
|
866
|
-
* The organization ID associated with the credentials.
|
|
867
|
-
*
|
|
868
|
-
*
|
|
869
|
-
*
|
|
870
|
-
* @remarks
|
|
871
|
-
* This key constant provides type-safe access to the `client_id` property of Body_issue_organization_token_v1_auth_token_post objects.
|
|
872
|
-
* Use this constant when you need to access properties dynamically or ensure type safety.
|
|
873
|
-
*
|
|
874
|
-
* @example
|
|
875
|
-
* ```typescript
|
|
876
|
-
* // Direct property access
|
|
877
|
-
* const value = body_issue_organization_token_v1_auth_token_post[KEY_BODY_ISSUE_ORGANIZATION_TOKEN_V1_AUTH_TOKEN_POST_CLIENT_ID];
|
|
878
|
-
*
|
|
879
|
-
* // Dynamic property access
|
|
880
|
-
* const propertyName = KEY_BODY_ISSUE_ORGANIZATION_TOKEN_V1_AUTH_TOKEN_POST_CLIENT_ID;
|
|
881
|
-
* const value = body_issue_organization_token_v1_auth_token_post[propertyName];
|
|
882
|
-
* ```
|
|
883
|
-
*
|
|
884
|
-
* @see {@link Body_issue_organization_token_v1_auth_token_post} - The TypeScript type definition
|
|
885
|
-
* @see {@link KEYS_BODY_ISSUE_ORGANIZATION_TOKEN_V1_AUTH_TOKEN_POST} - Array of all keys for this type
|
|
886
|
-
*/
|
|
887
|
-
export const KEY_BODY_ISSUE_ORGANIZATION_TOKEN_V1_AUTH_TOKEN_POST_CLIENT_ID = 'client_id' as keyof Body_issue_organization_token_v1_auth_token_post;
|
|
888
|
-
/**
|
|
889
|
-
* Client Secret
|
|
890
|
-
*
|
|
891
|
-
* Client secret for authentication.
|
|
892
|
-
*
|
|
893
|
-
*
|
|
894
|
-
*
|
|
895
|
-
* @remarks
|
|
896
|
-
* This key constant provides type-safe access to the `client_secret` property of Body_issue_organization_token_v1_auth_token_post objects.
|
|
897
|
-
* Use this constant when you need to access properties dynamically or ensure type safety.
|
|
898
|
-
*
|
|
899
|
-
* @example
|
|
900
|
-
* ```typescript
|
|
901
|
-
* // Direct property access
|
|
902
|
-
* const value = body_issue_organization_token_v1_auth_token_post[KEY_BODY_ISSUE_ORGANIZATION_TOKEN_V1_AUTH_TOKEN_POST_CLIENT_SECRET];
|
|
903
|
-
*
|
|
904
|
-
* // Dynamic property access
|
|
905
|
-
* const propertyName = KEY_BODY_ISSUE_ORGANIZATION_TOKEN_V1_AUTH_TOKEN_POST_CLIENT_SECRET;
|
|
906
|
-
* const value = body_issue_organization_token_v1_auth_token_post[propertyName];
|
|
907
|
-
* ```
|
|
908
|
-
*
|
|
909
|
-
* @see {@link Body_issue_organization_token_v1_auth_token_post} - The TypeScript type definition
|
|
910
|
-
* @see {@link KEYS_BODY_ISSUE_ORGANIZATION_TOKEN_V1_AUTH_TOKEN_POST} - Array of all keys for this type
|
|
911
|
-
*/
|
|
912
|
-
export const KEY_BODY_ISSUE_ORGANIZATION_TOKEN_V1_AUTH_TOKEN_POST_CLIENT_SECRET = 'client_secret' as keyof Body_issue_organization_token_v1_auth_token_post;
|
|
913
|
-
/**
|
|
914
|
-
* grant_type property
|
|
915
|
-
*
|
|
916
|
-
* The grant type for the authentication request.
|
|
917
|
-
*
|
|
918
|
-
*
|
|
919
|
-
*
|
|
920
|
-
* @remarks
|
|
921
|
-
* This key constant provides type-safe access to the `grant_type` property of Body_issue_organization_token_v1_auth_token_post objects.
|
|
922
|
-
* Use this constant when you need to access properties dynamically or ensure type safety.
|
|
923
|
-
*
|
|
924
|
-
* @example
|
|
925
|
-
* ```typescript
|
|
926
|
-
* // Direct property access
|
|
927
|
-
* const value = body_issue_organization_token_v1_auth_token_post[KEY_BODY_ISSUE_ORGANIZATION_TOKEN_V1_AUTH_TOKEN_POST_GRANT_TYPE];
|
|
928
|
-
*
|
|
929
|
-
* // Dynamic property access
|
|
930
|
-
* const propertyName = KEY_BODY_ISSUE_ORGANIZATION_TOKEN_V1_AUTH_TOKEN_POST_GRANT_TYPE;
|
|
931
|
-
* const value = body_issue_organization_token_v1_auth_token_post[propertyName];
|
|
932
|
-
* ```
|
|
933
|
-
*
|
|
934
|
-
* @see {@link Body_issue_organization_token_v1_auth_token_post} - The TypeScript type definition
|
|
935
|
-
* @see {@link KEYS_BODY_ISSUE_ORGANIZATION_TOKEN_V1_AUTH_TOKEN_POST} - Array of all keys for this type
|
|
936
|
-
*/
|
|
937
|
-
export const KEY_BODY_ISSUE_ORGANIZATION_TOKEN_V1_AUTH_TOKEN_POST_GRANT_TYPE = 'grant_type' as keyof Body_issue_organization_token_v1_auth_token_post;
|
|
938
|
-
/**
|
|
939
|
-
* Password
|
|
940
|
-
*
|
|
941
|
-
* Password for the user.
|
|
942
|
-
*
|
|
943
|
-
*
|
|
944
|
-
*
|
|
945
|
-
* @remarks
|
|
946
|
-
* This key constant provides type-safe access to the `password` property of Body_issue_organization_token_v1_auth_token_post objects.
|
|
947
|
-
* Use this constant when you need to access properties dynamically or ensure type safety.
|
|
948
|
-
*
|
|
949
|
-
* @example
|
|
950
|
-
* ```typescript
|
|
951
|
-
* // Direct property access
|
|
952
|
-
* const value = body_issue_organization_token_v1_auth_token_post[KEY_BODY_ISSUE_ORGANIZATION_TOKEN_V1_AUTH_TOKEN_POST_PASSWORD];
|
|
953
|
-
*
|
|
954
|
-
* // Dynamic property access
|
|
955
|
-
* const propertyName = KEY_BODY_ISSUE_ORGANIZATION_TOKEN_V1_AUTH_TOKEN_POST_PASSWORD;
|
|
956
|
-
* const value = body_issue_organization_token_v1_auth_token_post[propertyName];
|
|
957
|
-
* ```
|
|
958
|
-
*
|
|
959
|
-
* @see {@link Body_issue_organization_token_v1_auth_token_post} - The TypeScript type definition
|
|
960
|
-
* @see {@link KEYS_BODY_ISSUE_ORGANIZATION_TOKEN_V1_AUTH_TOKEN_POST} - Array of all keys for this type
|
|
961
|
-
*/
|
|
962
|
-
export const KEY_BODY_ISSUE_ORGANIZATION_TOKEN_V1_AUTH_TOKEN_POST_PASSWORD = 'password' as keyof Body_issue_organization_token_v1_auth_token_post;
|
|
963
|
-
/**
|
|
964
|
-
* Username
|
|
965
|
-
*
|
|
966
|
-
* Username for authentication.
|
|
967
|
-
*
|
|
968
|
-
*
|
|
969
|
-
*
|
|
970
|
-
* @remarks
|
|
971
|
-
* This key constant provides type-safe access to the `username` property of Body_issue_organization_token_v1_auth_token_post objects.
|
|
972
|
-
* Use this constant when you need to access properties dynamically or ensure type safety.
|
|
973
|
-
*
|
|
974
|
-
* @example
|
|
975
|
-
* ```typescript
|
|
976
|
-
* // Direct property access
|
|
977
|
-
* const value = body_issue_organization_token_v1_auth_token_post[KEY_BODY_ISSUE_ORGANIZATION_TOKEN_V1_AUTH_TOKEN_POST_USERNAME];
|
|
978
|
-
*
|
|
979
|
-
* // Dynamic property access
|
|
980
|
-
* const propertyName = KEY_BODY_ISSUE_ORGANIZATION_TOKEN_V1_AUTH_TOKEN_POST_USERNAME;
|
|
981
|
-
* const value = body_issue_organization_token_v1_auth_token_post[propertyName];
|
|
982
|
-
* ```
|
|
983
|
-
*
|
|
984
|
-
* @see {@link Body_issue_organization_token_v1_auth_token_post} - The TypeScript type definition
|
|
985
|
-
* @see {@link KEYS_BODY_ISSUE_ORGANIZATION_TOKEN_V1_AUTH_TOKEN_POST} - Array of all keys for this type
|
|
986
|
-
*/
|
|
987
|
-
export const KEY_BODY_ISSUE_ORGANIZATION_TOKEN_V1_AUTH_TOKEN_POST_USERNAME = 'username' as keyof Body_issue_organization_token_v1_auth_token_post;
|
|
988
|
-
|
|
989
|
-
/**
|
|
990
|
-
* Array of all Body_issue_organization_token_v1_auth_token_post property keys
|
|
991
|
-
*
|
|
992
|
-
* @remarks
|
|
993
|
-
* This constant provides a readonly array containing all valid property keys for Body_issue_organization_token_v1_auth_token_post objects.
|
|
994
|
-
* Useful for iteration, validation, and generating dynamic UI components.
|
|
995
|
-
*
|
|
996
|
-
* @example
|
|
997
|
-
* ```typescript
|
|
998
|
-
* // Iterating through all keys
|
|
999
|
-
* for (const key of KEYS_BODY_ISSUE_ORGANIZATION_TOKEN_V1_AUTH_TOKEN_POST) {
|
|
1000
|
-
* console.log(`Property: ${key}, Value: ${body_issue_organization_token_v1_auth_token_post[key]}`);
|
|
1001
|
-
* }
|
|
1002
|
-
*
|
|
1003
|
-
* // Validation
|
|
1004
|
-
* const isValidKey = KEYS_BODY_ISSUE_ORGANIZATION_TOKEN_V1_AUTH_TOKEN_POST.includes(someKey);
|
|
1005
|
-
* ```
|
|
1006
|
-
*
|
|
1007
|
-
* @see {@link Body_issue_organization_token_v1_auth_token_post} - The TypeScript type definition
|
|
1008
|
-
*/
|
|
1009
|
-
export const KEYS_BODY_ISSUE_ORGANIZATION_TOKEN_V1_AUTH_TOKEN_POST = [
|
|
1010
|
-
KEY_BODY_ISSUE_ORGANIZATION_TOKEN_V1_AUTH_TOKEN_POST_CLIENT_ID,
|
|
1011
|
-
KEY_BODY_ISSUE_ORGANIZATION_TOKEN_V1_AUTH_TOKEN_POST_CLIENT_SECRET,
|
|
1012
|
-
KEY_BODY_ISSUE_ORGANIZATION_TOKEN_V1_AUTH_TOKEN_POST_GRANT_TYPE,
|
|
1013
|
-
KEY_BODY_ISSUE_ORGANIZATION_TOKEN_V1_AUTH_TOKEN_POST_PASSWORD,
|
|
1014
|
-
KEY_BODY_ISSUE_ORGANIZATION_TOKEN_V1_AUTH_TOKEN_POST_USERNAME,
|
|
1015
|
-
] as const satisfies (keyof Body_issue_organization_token_v1_auth_token_post)[];
|
|
1016
|
-
|
|
1017
856
|
/**
|
|
1018
857
|
* Session Client Secret
|
|
1019
858
|
*
|
|
@@ -12898,921 +12737,325 @@ export const KEYS_ORGANIZATION_CREATE = [
|
|
|
12898
12737
|
] as const satisfies (keyof OrganizationCreate)[];
|
|
12899
12738
|
|
|
12900
12739
|
/**
|
|
12901
|
-
*
|
|
12740
|
+
* Access Token
|
|
12902
12741
|
*
|
|
12903
|
-
* Description of the organization credential.
|
|
12904
12742
|
*
|
|
12743
|
+
* @type {string}
|
|
12905
12744
|
*
|
|
12906
12745
|
*
|
|
12907
12746
|
* @remarks
|
|
12908
|
-
* This key constant provides type-safe access to the `
|
|
12747
|
+
* This key constant provides type-safe access to the `access_token` property of OrganizationToken objects.
|
|
12909
12748
|
* Use this constant when you need to access properties dynamically or ensure type safety.
|
|
12910
12749
|
*
|
|
12911
12750
|
* @example
|
|
12912
12751
|
* ```typescript
|
|
12913
12752
|
* // Direct property access
|
|
12914
|
-
* const value =
|
|
12753
|
+
* const value = organizationtoken[KEY_ORGANIZATION_TOKEN_ACCESS_TOKEN];
|
|
12915
12754
|
*
|
|
12916
12755
|
* // Dynamic property access
|
|
12917
|
-
* const propertyName =
|
|
12918
|
-
* const value =
|
|
12756
|
+
* const propertyName = KEY_ORGANIZATION_TOKEN_ACCESS_TOKEN;
|
|
12757
|
+
* const value = organizationtoken[propertyName];
|
|
12919
12758
|
* ```
|
|
12920
12759
|
*
|
|
12921
|
-
* @see {@link
|
|
12922
|
-
* @see {@link
|
|
12760
|
+
* @see {@link OrganizationToken} - The TypeScript type definition
|
|
12761
|
+
* @see {@link KEYS_ORGANIZATION_TOKEN} - Array of all keys for this type
|
|
12923
12762
|
*/
|
|
12924
|
-
export const
|
|
12763
|
+
export const KEY_ORGANIZATION_TOKEN_ACCESS_TOKEN = 'access_token' as keyof OrganizationToken;
|
|
12925
12764
|
/**
|
|
12926
|
-
*
|
|
12765
|
+
* Expires In
|
|
12927
12766
|
*
|
|
12928
|
-
* Unique identifier of the organization credential.
|
|
12929
12767
|
*
|
|
12930
|
-
* @type {
|
|
12768
|
+
* @type {integer}
|
|
12931
12769
|
*
|
|
12932
12770
|
*
|
|
12933
12771
|
* @remarks
|
|
12934
|
-
* This key constant provides type-safe access to the `
|
|
12772
|
+
* This key constant provides type-safe access to the `expires_in` property of OrganizationToken objects.
|
|
12935
12773
|
* Use this constant when you need to access properties dynamically or ensure type safety.
|
|
12936
12774
|
*
|
|
12937
12775
|
* @example
|
|
12938
12776
|
* ```typescript
|
|
12939
12777
|
* // Direct property access
|
|
12940
|
-
* const value =
|
|
12778
|
+
* const value = organizationtoken[KEY_ORGANIZATION_TOKEN_EXPIRES_IN];
|
|
12941
12779
|
*
|
|
12942
12780
|
* // Dynamic property access
|
|
12943
|
-
* const propertyName =
|
|
12944
|
-
* const value =
|
|
12781
|
+
* const propertyName = KEY_ORGANIZATION_TOKEN_EXPIRES_IN;
|
|
12782
|
+
* const value = organizationtoken[propertyName];
|
|
12945
12783
|
* ```
|
|
12946
12784
|
*
|
|
12947
|
-
* @see {@link
|
|
12948
|
-
* @see {@link
|
|
12785
|
+
* @see {@link OrganizationToken} - The TypeScript type definition
|
|
12786
|
+
* @see {@link KEYS_ORGANIZATION_TOKEN} - Array of all keys for this type
|
|
12949
12787
|
*/
|
|
12950
|
-
export const
|
|
12788
|
+
export const KEY_ORGANIZATION_TOKEN_EXPIRES_IN = 'expires_in' as keyof OrganizationToken;
|
|
12951
12789
|
/**
|
|
12952
|
-
*
|
|
12790
|
+
* Token Type
|
|
12953
12791
|
*
|
|
12954
|
-
* Name of the organization credential. Only a-z, A-Z, 0-9, underscore, and hyphen are allowed.
|
|
12955
12792
|
*
|
|
12793
|
+
* @type {string}
|
|
12956
12794
|
*
|
|
12957
12795
|
*
|
|
12958
12796
|
* @remarks
|
|
12959
|
-
* This key constant provides type-safe access to the `
|
|
12797
|
+
* This key constant provides type-safe access to the `token_type` property of OrganizationToken objects.
|
|
12960
12798
|
* Use this constant when you need to access properties dynamically or ensure type safety.
|
|
12961
12799
|
*
|
|
12962
12800
|
* @example
|
|
12963
12801
|
* ```typescript
|
|
12964
12802
|
* // Direct property access
|
|
12965
|
-
* const value =
|
|
12803
|
+
* const value = organizationtoken[KEY_ORGANIZATION_TOKEN_TOKEN_TYPE];
|
|
12966
12804
|
*
|
|
12967
12805
|
* // Dynamic property access
|
|
12968
|
-
* const propertyName =
|
|
12969
|
-
* const value =
|
|
12806
|
+
* const propertyName = KEY_ORGANIZATION_TOKEN_TOKEN_TYPE;
|
|
12807
|
+
* const value = organizationtoken[propertyName];
|
|
12970
12808
|
* ```
|
|
12971
12809
|
*
|
|
12972
|
-
* @see {@link
|
|
12973
|
-
* @see {@link
|
|
12810
|
+
* @see {@link OrganizationToken} - The TypeScript type definition
|
|
12811
|
+
* @see {@link KEYS_ORGANIZATION_TOKEN} - Array of all keys for this type
|
|
12974
12812
|
*/
|
|
12975
|
-
export const
|
|
12813
|
+
export const KEY_ORGANIZATION_TOKEN_TOKEN_TYPE = 'token_type' as keyof OrganizationToken;
|
|
12814
|
+
|
|
12976
12815
|
/**
|
|
12977
|
-
*
|
|
12978
|
-
*
|
|
12979
|
-
* The date/time the entry was created on
|
|
12980
|
-
*
|
|
12981
|
-
* @type {string}
|
|
12982
|
-
*
|
|
12816
|
+
* Array of all OrganizationToken property keys
|
|
12983
12817
|
*
|
|
12984
12818
|
* @remarks
|
|
12985
|
-
* This
|
|
12986
|
-
*
|
|
12819
|
+
* This constant provides a readonly array containing all valid property keys for OrganizationToken objects.
|
|
12820
|
+
* Useful for iteration, validation, and generating dynamic UI components.
|
|
12987
12821
|
*
|
|
12988
12822
|
* @example
|
|
12989
12823
|
* ```typescript
|
|
12990
|
-
* //
|
|
12991
|
-
* const
|
|
12824
|
+
* // Iterating through all keys
|
|
12825
|
+
* for (const key of KEYS_ORGANIZATION_TOKEN) {
|
|
12826
|
+
* console.log(`Property: ${key}, Value: ${organizationtoken[key]}`);
|
|
12827
|
+
* }
|
|
12992
12828
|
*
|
|
12993
|
-
* //
|
|
12994
|
-
* const
|
|
12995
|
-
* const value = organizationcredential[propertyName];
|
|
12829
|
+
* // Validation
|
|
12830
|
+
* const isValidKey = KEYS_ORGANIZATION_TOKEN.includes(someKey);
|
|
12996
12831
|
* ```
|
|
12997
12832
|
*
|
|
12998
|
-
* @see {@link
|
|
12999
|
-
* @see {@link KEYS_ORGANIZATION_CREDENTIAL} - Array of all keys for this type
|
|
12833
|
+
* @see {@link OrganizationToken} - The TypeScript type definition
|
|
13000
12834
|
*/
|
|
13001
|
-
export const
|
|
12835
|
+
export const KEYS_ORGANIZATION_TOKEN = [
|
|
12836
|
+
KEY_ORGANIZATION_TOKEN_ACCESS_TOKEN,
|
|
12837
|
+
KEY_ORGANIZATION_TOKEN_EXPIRES_IN,
|
|
12838
|
+
KEY_ORGANIZATION_TOKEN_TOKEN_TYPE,
|
|
12839
|
+
] as const satisfies (keyof OrganizationToken)[];
|
|
12840
|
+
|
|
13002
12841
|
/**
|
|
13003
|
-
*
|
|
12842
|
+
* Address 1
|
|
13004
12843
|
*
|
|
13005
|
-
*
|
|
12844
|
+
* First line of the organization's address.
|
|
13006
12845
|
*
|
|
13007
12846
|
*
|
|
13008
12847
|
*
|
|
13009
12848
|
* @remarks
|
|
13010
|
-
* This key constant provides type-safe access to the `
|
|
12849
|
+
* This key constant provides type-safe access to the `address_1` property of OrganizationUpdate objects.
|
|
13011
12850
|
* Use this constant when you need to access properties dynamically or ensure type safety.
|
|
13012
12851
|
*
|
|
13013
12852
|
* @example
|
|
13014
12853
|
* ```typescript
|
|
13015
12854
|
* // Direct property access
|
|
13016
|
-
* const value =
|
|
12855
|
+
* const value = organizationupdate[KEY_ORGANIZATION_UPDATE_ADDRESS_1];
|
|
13017
12856
|
*
|
|
13018
12857
|
* // Dynamic property access
|
|
13019
|
-
* const propertyName =
|
|
13020
|
-
* const value =
|
|
12858
|
+
* const propertyName = KEY_ORGANIZATION_UPDATE_ADDRESS_1;
|
|
12859
|
+
* const value = organizationupdate[propertyName];
|
|
13021
12860
|
* ```
|
|
13022
12861
|
*
|
|
13023
|
-
* @see {@link
|
|
13024
|
-
* @see {@link
|
|
12862
|
+
* @see {@link OrganizationUpdate} - The TypeScript type definition
|
|
12863
|
+
* @see {@link KEYS_ORGANIZATION_UPDATE} - Array of all keys for this type
|
|
13025
12864
|
*/
|
|
13026
|
-
export const
|
|
12865
|
+
export const KEY_ORGANIZATION_UPDATE_ADDRESS_1 = 'address_1' as keyof OrganizationUpdate;
|
|
13027
12866
|
/**
|
|
13028
|
-
*
|
|
12867
|
+
* Address 2
|
|
13029
12868
|
*
|
|
13030
|
-
*
|
|
12869
|
+
* Second line of the organization's address.
|
|
13031
12870
|
*
|
|
13032
12871
|
*
|
|
13033
12872
|
*
|
|
13034
12873
|
* @remarks
|
|
13035
|
-
* This key constant provides type-safe access to the `
|
|
12874
|
+
* This key constant provides type-safe access to the `address_2` property of OrganizationUpdate objects.
|
|
13036
12875
|
* Use this constant when you need to access properties dynamically or ensure type safety.
|
|
13037
12876
|
*
|
|
13038
12877
|
* @example
|
|
13039
12878
|
* ```typescript
|
|
13040
12879
|
* // Direct property access
|
|
13041
|
-
* const value =
|
|
12880
|
+
* const value = organizationupdate[KEY_ORGANIZATION_UPDATE_ADDRESS_2];
|
|
13042
12881
|
*
|
|
13043
12882
|
* // Dynamic property access
|
|
13044
|
-
* const propertyName =
|
|
13045
|
-
* const value =
|
|
12883
|
+
* const propertyName = KEY_ORGANIZATION_UPDATE_ADDRESS_2;
|
|
12884
|
+
* const value = organizationupdate[propertyName];
|
|
13046
12885
|
* ```
|
|
13047
12886
|
*
|
|
13048
|
-
* @see {@link
|
|
13049
|
-
* @see {@link
|
|
12887
|
+
* @see {@link OrganizationUpdate} - The TypeScript type definition
|
|
12888
|
+
* @see {@link KEYS_ORGANIZATION_UPDATE} - Array of all keys for this type
|
|
13050
12889
|
*/
|
|
13051
|
-
export const
|
|
12890
|
+
export const KEY_ORGANIZATION_UPDATE_ADDRESS_2 = 'address_2' as keyof OrganizationUpdate;
|
|
13052
12891
|
/**
|
|
13053
|
-
*
|
|
12892
|
+
* Business Number
|
|
13054
12893
|
*
|
|
12894
|
+
* Government issued business identifier for the organization issued.
|
|
13055
12895
|
*
|
|
13056
|
-
* @type {string}
|
|
13057
12896
|
*
|
|
13058
12897
|
*
|
|
13059
12898
|
* @remarks
|
|
13060
|
-
* This key constant provides type-safe access to the `
|
|
12899
|
+
* This key constant provides type-safe access to the `business_number` property of OrganizationUpdate objects.
|
|
13061
12900
|
* Use this constant when you need to access properties dynamically or ensure type safety.
|
|
13062
12901
|
*
|
|
13063
12902
|
* @example
|
|
13064
12903
|
* ```typescript
|
|
13065
12904
|
* // Direct property access
|
|
13066
|
-
* const value =
|
|
12905
|
+
* const value = organizationupdate[KEY_ORGANIZATION_UPDATE_BUSINESS_NUMBER];
|
|
13067
12906
|
*
|
|
13068
12907
|
* // Dynamic property access
|
|
13069
|
-
* const propertyName =
|
|
13070
|
-
* const value =
|
|
12908
|
+
* const propertyName = KEY_ORGANIZATION_UPDATE_BUSINESS_NUMBER;
|
|
12909
|
+
* const value = organizationupdate[propertyName];
|
|
13071
12910
|
* ```
|
|
13072
12911
|
*
|
|
13073
|
-
* @see {@link
|
|
13074
|
-
* @see {@link
|
|
12912
|
+
* @see {@link OrganizationUpdate} - The TypeScript type definition
|
|
12913
|
+
* @see {@link KEYS_ORGANIZATION_UPDATE} - Array of all keys for this type
|
|
13075
12914
|
*/
|
|
13076
|
-
export const
|
|
12915
|
+
export const KEY_ORGANIZATION_UPDATE_BUSINESS_NUMBER = 'business_number' as keyof OrganizationUpdate;
|
|
13077
12916
|
/**
|
|
13078
|
-
*
|
|
12917
|
+
* City
|
|
13079
12918
|
*
|
|
13080
|
-
*
|
|
12919
|
+
* City of the organization's address.
|
|
13081
12920
|
*
|
|
13082
12921
|
*
|
|
13083
12922
|
*
|
|
13084
12923
|
* @remarks
|
|
13085
|
-
* This key constant provides type-safe access to the `
|
|
12924
|
+
* This key constant provides type-safe access to the `city` property of OrganizationUpdate objects.
|
|
13086
12925
|
* Use this constant when you need to access properties dynamically or ensure type safety.
|
|
13087
12926
|
*
|
|
13088
12927
|
* @example
|
|
13089
12928
|
* ```typescript
|
|
13090
12929
|
* // Direct property access
|
|
13091
|
-
* const value =
|
|
12930
|
+
* const value = organizationupdate[KEY_ORGANIZATION_UPDATE_CITY];
|
|
13092
12931
|
*
|
|
13093
12932
|
* // Dynamic property access
|
|
13094
|
-
* const propertyName =
|
|
13095
|
-
* const value =
|
|
12933
|
+
* const propertyName = KEY_ORGANIZATION_UPDATE_CITY;
|
|
12934
|
+
* const value = organizationupdate[propertyName];
|
|
13096
12935
|
* ```
|
|
13097
12936
|
*
|
|
13098
|
-
* @see {@link
|
|
13099
|
-
* @see {@link
|
|
12937
|
+
* @see {@link OrganizationUpdate} - The TypeScript type definition
|
|
12938
|
+
* @see {@link KEYS_ORGANIZATION_UPDATE} - Array of all keys for this type
|
|
13100
12939
|
*/
|
|
13101
|
-
export const
|
|
13102
|
-
|
|
12940
|
+
export const KEY_ORGANIZATION_UPDATE_CITY = 'city' as keyof OrganizationUpdate;
|
|
13103
12941
|
/**
|
|
13104
|
-
*
|
|
12942
|
+
* Country Code
|
|
12943
|
+
*
|
|
12944
|
+
*
|
|
12945
|
+
*
|
|
13105
12946
|
*
|
|
13106
12947
|
* @remarks
|
|
13107
|
-
* This constant provides
|
|
13108
|
-
*
|
|
12948
|
+
* This key constant provides type-safe access to the `country_code` property of OrganizationUpdate objects.
|
|
12949
|
+
* Use this constant when you need to access properties dynamically or ensure type safety.
|
|
13109
12950
|
*
|
|
13110
12951
|
* @example
|
|
13111
12952
|
* ```typescript
|
|
13112
|
-
* //
|
|
13113
|
-
*
|
|
13114
|
-
* console.log(`Property: ${key}, Value: ${organizationcredential[key]}`);
|
|
13115
|
-
* }
|
|
12953
|
+
* // Direct property access
|
|
12954
|
+
* const value = organizationupdate[KEY_ORGANIZATION_UPDATE_COUNTRY_CODE];
|
|
13116
12955
|
*
|
|
13117
|
-
* //
|
|
13118
|
-
* const
|
|
12956
|
+
* // Dynamic property access
|
|
12957
|
+
* const propertyName = KEY_ORGANIZATION_UPDATE_COUNTRY_CODE;
|
|
12958
|
+
* const value = organizationupdate[propertyName];
|
|
13119
12959
|
* ```
|
|
13120
12960
|
*
|
|
13121
|
-
* @see {@link
|
|
12961
|
+
* @see {@link OrganizationUpdate} - The TypeScript type definition
|
|
12962
|
+
* @see {@link KEYS_ORGANIZATION_UPDATE} - Array of all keys for this type
|
|
13122
12963
|
*/
|
|
13123
|
-
export const
|
|
13124
|
-
KEY_ORGANIZATION_CREDENTIAL_API_KEY_DESCRIPTION,
|
|
13125
|
-
KEY_ORGANIZATION_CREDENTIAL_API_KEY_ID,
|
|
13126
|
-
KEY_ORGANIZATION_CREDENTIAL_API_KEY_NAME,
|
|
13127
|
-
KEY_ORGANIZATION_CREDENTIAL_CREATED_ON,
|
|
13128
|
-
KEY_ORGANIZATION_CREDENTIAL_DELETED_ON,
|
|
13129
|
-
KEY_ORGANIZATION_CREDENTIAL_LAST_USED_ON,
|
|
13130
|
-
KEY_ORGANIZATION_CREDENTIAL_ORGANIZATION_ID,
|
|
13131
|
-
KEY_ORGANIZATION_CREDENTIAL_STATUS,
|
|
13132
|
-
] as const satisfies (keyof OrganizationCredential)[];
|
|
13133
|
-
|
|
12964
|
+
export const KEY_ORGANIZATION_UPDATE_COUNTRY_CODE = 'country_code' as keyof OrganizationUpdate;
|
|
13134
12965
|
/**
|
|
13135
|
-
*
|
|
12966
|
+
* Default Locale
|
|
13136
12967
|
*
|
|
13137
|
-
*
|
|
12968
|
+
* Default locale for the organization.
|
|
13138
12969
|
*
|
|
13139
|
-
* @type {string}
|
|
13140
12970
|
*
|
|
13141
12971
|
*
|
|
13142
12972
|
* @remarks
|
|
13143
|
-
* This key constant provides type-safe access to the `
|
|
12973
|
+
* This key constant provides type-safe access to the `default_locale` property of OrganizationUpdate objects.
|
|
13144
12974
|
* Use this constant when you need to access properties dynamically or ensure type safety.
|
|
13145
12975
|
*
|
|
13146
12976
|
* @example
|
|
13147
12977
|
* ```typescript
|
|
13148
12978
|
* // Direct property access
|
|
13149
|
-
* const value =
|
|
12979
|
+
* const value = organizationupdate[KEY_ORGANIZATION_UPDATE_DEFAULT_LOCALE];
|
|
13150
12980
|
*
|
|
13151
12981
|
* // Dynamic property access
|
|
13152
|
-
* const propertyName =
|
|
13153
|
-
* const value =
|
|
12982
|
+
* const propertyName = KEY_ORGANIZATION_UPDATE_DEFAULT_LOCALE;
|
|
12983
|
+
* const value = organizationupdate[propertyName];
|
|
13154
12984
|
* ```
|
|
13155
12985
|
*
|
|
13156
|
-
* @see {@link
|
|
13157
|
-
* @see {@link
|
|
12986
|
+
* @see {@link OrganizationUpdate} - The TypeScript type definition
|
|
12987
|
+
* @see {@link KEYS_ORGANIZATION_UPDATE} - Array of all keys for this type
|
|
13158
12988
|
*/
|
|
13159
|
-
export const
|
|
12989
|
+
export const KEY_ORGANIZATION_UPDATE_DEFAULT_LOCALE = 'default_locale' as keyof OrganizationUpdate;
|
|
13160
12990
|
/**
|
|
13161
|
-
*
|
|
12991
|
+
* Name
|
|
13162
12992
|
*
|
|
13163
|
-
*
|
|
12993
|
+
* Name of the organization.
|
|
13164
12994
|
*
|
|
13165
12995
|
*
|
|
13166
12996
|
*
|
|
13167
12997
|
* @remarks
|
|
13168
|
-
* This key constant provides type-safe access to the `
|
|
12998
|
+
* This key constant provides type-safe access to the `name` property of OrganizationUpdate objects.
|
|
13169
12999
|
* Use this constant when you need to access properties dynamically or ensure type safety.
|
|
13170
13000
|
*
|
|
13171
13001
|
* @example
|
|
13172
13002
|
* ```typescript
|
|
13173
13003
|
* // Direct property access
|
|
13174
|
-
* const value =
|
|
13004
|
+
* const value = organizationupdate[KEY_ORGANIZATION_UPDATE_NAME];
|
|
13175
13005
|
*
|
|
13176
13006
|
* // Dynamic property access
|
|
13177
|
-
* const propertyName =
|
|
13178
|
-
* const value =
|
|
13007
|
+
* const propertyName = KEY_ORGANIZATION_UPDATE_NAME;
|
|
13008
|
+
* const value = organizationupdate[propertyName];
|
|
13179
13009
|
* ```
|
|
13180
13010
|
*
|
|
13181
|
-
* @see {@link
|
|
13182
|
-
* @see {@link
|
|
13011
|
+
* @see {@link OrganizationUpdate} - The TypeScript type definition
|
|
13012
|
+
* @see {@link KEYS_ORGANIZATION_UPDATE} - Array of all keys for this type
|
|
13183
13013
|
*/
|
|
13184
|
-
export const
|
|
13014
|
+
export const KEY_ORGANIZATION_UPDATE_NAME = 'name' as keyof OrganizationUpdate;
|
|
13185
13015
|
/**
|
|
13186
|
-
*
|
|
13016
|
+
* Postal Code
|
|
13187
13017
|
*
|
|
13188
|
-
*
|
|
13018
|
+
* Postal code of the organization's address.
|
|
13189
13019
|
*
|
|
13190
13020
|
*
|
|
13191
13021
|
*
|
|
13192
13022
|
* @remarks
|
|
13193
|
-
* This key constant provides type-safe access to the `
|
|
13023
|
+
* This key constant provides type-safe access to the `postal_code` property of OrganizationUpdate objects.
|
|
13194
13024
|
* Use this constant when you need to access properties dynamically or ensure type safety.
|
|
13195
13025
|
*
|
|
13196
13026
|
* @example
|
|
13197
13027
|
* ```typescript
|
|
13198
13028
|
* // Direct property access
|
|
13199
|
-
* const value =
|
|
13029
|
+
* const value = organizationupdate[KEY_ORGANIZATION_UPDATE_POSTAL_CODE];
|
|
13200
13030
|
*
|
|
13201
13031
|
* // Dynamic property access
|
|
13202
|
-
* const propertyName =
|
|
13203
|
-
* const value =
|
|
13032
|
+
* const propertyName = KEY_ORGANIZATION_UPDATE_POSTAL_CODE;
|
|
13033
|
+
* const value = organizationupdate[propertyName];
|
|
13204
13034
|
* ```
|
|
13205
13035
|
*
|
|
13206
|
-
* @see {@link
|
|
13207
|
-
* @see {@link
|
|
13036
|
+
* @see {@link OrganizationUpdate} - The TypeScript type definition
|
|
13037
|
+
* @see {@link KEYS_ORGANIZATION_UPDATE} - Array of all keys for this type
|
|
13208
13038
|
*/
|
|
13209
|
-
export const
|
|
13039
|
+
export const KEY_ORGANIZATION_UPDATE_POSTAL_CODE = 'postal_code' as keyof OrganizationUpdate;
|
|
13210
13040
|
/**
|
|
13211
|
-
*
|
|
13041
|
+
* State
|
|
13212
13042
|
*
|
|
13043
|
+
* State or province of the organization's address.
|
|
13213
13044
|
*
|
|
13214
|
-
* @type {string}
|
|
13215
13045
|
*
|
|
13216
13046
|
*
|
|
13217
13047
|
* @remarks
|
|
13218
|
-
* This key constant provides type-safe access to the `
|
|
13048
|
+
* This key constant provides type-safe access to the `state` property of OrganizationUpdate objects.
|
|
13219
13049
|
* Use this constant when you need to access properties dynamically or ensure type safety.
|
|
13220
13050
|
*
|
|
13221
13051
|
* @example
|
|
13222
13052
|
* ```typescript
|
|
13223
13053
|
* // Direct property access
|
|
13224
|
-
* const value =
|
|
13054
|
+
* const value = organizationupdate[KEY_ORGANIZATION_UPDATE_STATE];
|
|
13225
13055
|
*
|
|
13226
13056
|
* // Dynamic property access
|
|
13227
|
-
* const propertyName =
|
|
13228
|
-
* const value =
|
|
13229
|
-
* ```
|
|
13230
|
-
*
|
|
13231
|
-
* @see {@link OrganizationCredentialCreated} - The TypeScript type definition
|
|
13232
|
-
* @see {@link KEYS_ORGANIZATION_CREDENTIAL_CREATED} - Array of all keys for this type
|
|
13233
|
-
*/
|
|
13234
|
-
export const KEY_ORGANIZATION_CREDENTIAL_CREATED_CLIENT_ID = 'client_id' as keyof OrganizationCredentialCreated;
|
|
13235
|
-
/**
|
|
13236
|
-
* Client Secret
|
|
13237
|
-
*
|
|
13238
|
-
* Plaintext secret to be hashed (not stored directly in the DB).
|
|
13239
|
-
*
|
|
13240
|
-
*
|
|
13241
|
-
*
|
|
13242
|
-
* @remarks
|
|
13243
|
-
* This key constant provides type-safe access to the `client_secret` property of OrganizationCredentialCreated objects.
|
|
13244
|
-
* Use this constant when you need to access properties dynamically or ensure type safety.
|
|
13245
|
-
*
|
|
13246
|
-
* @example
|
|
13247
|
-
* ```typescript
|
|
13248
|
-
* // Direct property access
|
|
13249
|
-
* const value = organizationcredentialcreated[KEY_ORGANIZATION_CREDENTIAL_CREATED_CLIENT_SECRET];
|
|
13250
|
-
*
|
|
13251
|
-
* // Dynamic property access
|
|
13252
|
-
* const propertyName = KEY_ORGANIZATION_CREDENTIAL_CREATED_CLIENT_SECRET;
|
|
13253
|
-
* const value = organizationcredentialcreated[propertyName];
|
|
13254
|
-
* ```
|
|
13255
|
-
*
|
|
13256
|
-
* @see {@link OrganizationCredentialCreated} - The TypeScript type definition
|
|
13257
|
-
* @see {@link KEYS_ORGANIZATION_CREDENTIAL_CREATED} - Array of all keys for this type
|
|
13258
|
-
*/
|
|
13259
|
-
export const KEY_ORGANIZATION_CREDENTIAL_CREATED_CLIENT_SECRET = 'client_secret' as keyof OrganizationCredentialCreated;
|
|
13260
|
-
/**
|
|
13261
|
-
* Created On
|
|
13262
|
-
*
|
|
13263
|
-
* The date/time the entry was created on
|
|
13264
|
-
*
|
|
13265
|
-
* @type {string}
|
|
13266
|
-
*
|
|
13267
|
-
*
|
|
13268
|
-
* @remarks
|
|
13269
|
-
* This key constant provides type-safe access to the `created_on` property of OrganizationCredentialCreated objects.
|
|
13270
|
-
* Use this constant when you need to access properties dynamically or ensure type safety.
|
|
13271
|
-
*
|
|
13272
|
-
* @example
|
|
13273
|
-
* ```typescript
|
|
13274
|
-
* // Direct property access
|
|
13275
|
-
* const value = organizationcredentialcreated[KEY_ORGANIZATION_CREDENTIAL_CREATED_CREATED_ON];
|
|
13276
|
-
*
|
|
13277
|
-
* // Dynamic property access
|
|
13278
|
-
* const propertyName = KEY_ORGANIZATION_CREDENTIAL_CREATED_CREATED_ON;
|
|
13279
|
-
* const value = organizationcredentialcreated[propertyName];
|
|
13280
|
-
* ```
|
|
13281
|
-
*
|
|
13282
|
-
* @see {@link OrganizationCredentialCreated} - The TypeScript type definition
|
|
13283
|
-
* @see {@link KEYS_ORGANIZATION_CREDENTIAL_CREATED} - Array of all keys for this type
|
|
13284
|
-
*/
|
|
13285
|
-
export const KEY_ORGANIZATION_CREDENTIAL_CREATED_CREATED_ON = 'created_on' as keyof OrganizationCredentialCreated;
|
|
13286
|
-
/**
|
|
13287
|
-
* Deleted On
|
|
13288
|
-
*
|
|
13289
|
-
* The date/time the entry was deleted on
|
|
13290
|
-
*
|
|
13291
|
-
*
|
|
13292
|
-
*
|
|
13293
|
-
* @remarks
|
|
13294
|
-
* This key constant provides type-safe access to the `deleted_on` property of OrganizationCredentialCreated objects.
|
|
13295
|
-
* Use this constant when you need to access properties dynamically or ensure type safety.
|
|
13296
|
-
*
|
|
13297
|
-
* @example
|
|
13298
|
-
* ```typescript
|
|
13299
|
-
* // Direct property access
|
|
13300
|
-
* const value = organizationcredentialcreated[KEY_ORGANIZATION_CREDENTIAL_CREATED_DELETED_ON];
|
|
13301
|
-
*
|
|
13302
|
-
* // Dynamic property access
|
|
13303
|
-
* const propertyName = KEY_ORGANIZATION_CREDENTIAL_CREATED_DELETED_ON;
|
|
13304
|
-
* const value = organizationcredentialcreated[propertyName];
|
|
13305
|
-
* ```
|
|
13306
|
-
*
|
|
13307
|
-
* @see {@link OrganizationCredentialCreated} - The TypeScript type definition
|
|
13308
|
-
* @see {@link KEYS_ORGANIZATION_CREDENTIAL_CREATED} - Array of all keys for this type
|
|
13309
|
-
*/
|
|
13310
|
-
export const KEY_ORGANIZATION_CREDENTIAL_CREATED_DELETED_ON = 'deleted_on' as keyof OrganizationCredentialCreated;
|
|
13311
|
-
/**
|
|
13312
|
-
* Last Used On
|
|
13313
|
-
*
|
|
13314
|
-
* The date/time the entry was deleted on
|
|
13315
|
-
*
|
|
13316
|
-
*
|
|
13317
|
-
*
|
|
13318
|
-
* @remarks
|
|
13319
|
-
* This key constant provides type-safe access to the `last_used_on` property of OrganizationCredentialCreated objects.
|
|
13320
|
-
* Use this constant when you need to access properties dynamically or ensure type safety.
|
|
13321
|
-
*
|
|
13322
|
-
* @example
|
|
13323
|
-
* ```typescript
|
|
13324
|
-
* // Direct property access
|
|
13325
|
-
* const value = organizationcredentialcreated[KEY_ORGANIZATION_CREDENTIAL_CREATED_LAST_USED_ON];
|
|
13326
|
-
*
|
|
13327
|
-
* // Dynamic property access
|
|
13328
|
-
* const propertyName = KEY_ORGANIZATION_CREDENTIAL_CREATED_LAST_USED_ON;
|
|
13329
|
-
* const value = organizationcredentialcreated[propertyName];
|
|
13330
|
-
* ```
|
|
13331
|
-
*
|
|
13332
|
-
* @see {@link OrganizationCredentialCreated} - The TypeScript type definition
|
|
13333
|
-
* @see {@link KEYS_ORGANIZATION_CREDENTIAL_CREATED} - Array of all keys for this type
|
|
13334
|
-
*/
|
|
13335
|
-
export const KEY_ORGANIZATION_CREDENTIAL_CREATED_LAST_USED_ON = 'last_used_on' as keyof OrganizationCredentialCreated;
|
|
13336
|
-
/**
|
|
13337
|
-
* status property
|
|
13338
|
-
*
|
|
13339
|
-
* The status of the organization credential.
|
|
13340
|
-
*
|
|
13341
|
-
*
|
|
13342
|
-
*
|
|
13343
|
-
* @remarks
|
|
13344
|
-
* This key constant provides type-safe access to the `status` property of OrganizationCredentialCreated objects.
|
|
13345
|
-
* Use this constant when you need to access properties dynamically or ensure type safety.
|
|
13346
|
-
*
|
|
13347
|
-
* @example
|
|
13348
|
-
* ```typescript
|
|
13349
|
-
* // Direct property access
|
|
13350
|
-
* const value = organizationcredentialcreated[KEY_ORGANIZATION_CREDENTIAL_CREATED_STATUS];
|
|
13351
|
-
*
|
|
13352
|
-
* // Dynamic property access
|
|
13353
|
-
* const propertyName = KEY_ORGANIZATION_CREDENTIAL_CREATED_STATUS;
|
|
13354
|
-
* const value = organizationcredentialcreated[propertyName];
|
|
13355
|
-
* ```
|
|
13356
|
-
*
|
|
13357
|
-
* @see {@link OrganizationCredentialCreated} - The TypeScript type definition
|
|
13358
|
-
* @see {@link KEYS_ORGANIZATION_CREDENTIAL_CREATED} - Array of all keys for this type
|
|
13359
|
-
*/
|
|
13360
|
-
export const KEY_ORGANIZATION_CREDENTIAL_CREATED_STATUS = 'status' as keyof OrganizationCredentialCreated;
|
|
13361
|
-
|
|
13362
|
-
/**
|
|
13363
|
-
* Array of all OrganizationCredentialCreated property keys
|
|
13364
|
-
*
|
|
13365
|
-
* @remarks
|
|
13366
|
-
* This constant provides a readonly array containing all valid property keys for OrganizationCredentialCreated objects.
|
|
13367
|
-
* Useful for iteration, validation, and generating dynamic UI components.
|
|
13368
|
-
*
|
|
13369
|
-
* @example
|
|
13370
|
-
* ```typescript
|
|
13371
|
-
* // Iterating through all keys
|
|
13372
|
-
* for (const key of KEYS_ORGANIZATION_CREDENTIAL_CREATED) {
|
|
13373
|
-
* console.log(`Property: ${key}, Value: ${organizationcredentialcreated[key]}`);
|
|
13374
|
-
* }
|
|
13375
|
-
*
|
|
13376
|
-
* // Validation
|
|
13377
|
-
* const isValidKey = KEYS_ORGANIZATION_CREDENTIAL_CREATED.includes(someKey);
|
|
13378
|
-
* ```
|
|
13379
|
-
*
|
|
13380
|
-
* @see {@link OrganizationCredentialCreated} - The TypeScript type definition
|
|
13381
|
-
*/
|
|
13382
|
-
export const KEYS_ORGANIZATION_CREDENTIAL_CREATED = [
|
|
13383
|
-
KEY_ORGANIZATION_CREDENTIAL_CREATED_API_KEY,
|
|
13384
|
-
KEY_ORGANIZATION_CREDENTIAL_CREATED_API_KEY_DESCRIPTION,
|
|
13385
|
-
KEY_ORGANIZATION_CREDENTIAL_CREATED_API_KEY_NAME,
|
|
13386
|
-
KEY_ORGANIZATION_CREDENTIAL_CREATED_CLIENT_ID,
|
|
13387
|
-
KEY_ORGANIZATION_CREDENTIAL_CREATED_CLIENT_SECRET,
|
|
13388
|
-
KEY_ORGANIZATION_CREDENTIAL_CREATED_CREATED_ON,
|
|
13389
|
-
KEY_ORGANIZATION_CREDENTIAL_CREATED_DELETED_ON,
|
|
13390
|
-
KEY_ORGANIZATION_CREDENTIAL_CREATED_LAST_USED_ON,
|
|
13391
|
-
KEY_ORGANIZATION_CREDENTIAL_CREATED_STATUS,
|
|
13392
|
-
] as const satisfies (keyof OrganizationCredentialCreated)[];
|
|
13393
|
-
|
|
13394
|
-
/**
|
|
13395
|
-
* Api Key Description
|
|
13396
|
-
*
|
|
13397
|
-
* Description of the organization credential.
|
|
13398
|
-
*
|
|
13399
|
-
*
|
|
13400
|
-
*
|
|
13401
|
-
* @remarks
|
|
13402
|
-
* This key constant provides type-safe access to the `api_key_description` property of OrganizationCredentialExtra objects.
|
|
13403
|
-
* Use this constant when you need to access properties dynamically or ensure type safety.
|
|
13404
|
-
*
|
|
13405
|
-
* @example
|
|
13406
|
-
* ```typescript
|
|
13407
|
-
* // Direct property access
|
|
13408
|
-
* const value = organizationcredentialextra[KEY_ORGANIZATION_CREDENTIAL_EXTRA_API_KEY_DESCRIPTION];
|
|
13409
|
-
*
|
|
13410
|
-
* // Dynamic property access
|
|
13411
|
-
* const propertyName = KEY_ORGANIZATION_CREDENTIAL_EXTRA_API_KEY_DESCRIPTION;
|
|
13412
|
-
* const value = organizationcredentialextra[propertyName];
|
|
13413
|
-
* ```
|
|
13414
|
-
*
|
|
13415
|
-
* @see {@link OrganizationCredentialExtra} - The TypeScript type definition
|
|
13416
|
-
* @see {@link KEYS_ORGANIZATION_CREDENTIAL_EXTRA} - Array of all keys for this type
|
|
13417
|
-
*/
|
|
13418
|
-
export const KEY_ORGANIZATION_CREDENTIAL_EXTRA_API_KEY_DESCRIPTION = 'api_key_description' as keyof OrganizationCredentialExtra;
|
|
13419
|
-
/**
|
|
13420
|
-
* Api Key Name
|
|
13421
|
-
*
|
|
13422
|
-
* Name of the organization credential. Only a-z, A-Z, 0-9, underscore, and hyphen are allowed.
|
|
13423
|
-
*
|
|
13424
|
-
*
|
|
13425
|
-
*
|
|
13426
|
-
* @remarks
|
|
13427
|
-
* This key constant provides type-safe access to the `api_key_name` property of OrganizationCredentialExtra objects.
|
|
13428
|
-
* Use this constant when you need to access properties dynamically or ensure type safety.
|
|
13429
|
-
*
|
|
13430
|
-
* @example
|
|
13431
|
-
* ```typescript
|
|
13432
|
-
* // Direct property access
|
|
13433
|
-
* const value = organizationcredentialextra[KEY_ORGANIZATION_CREDENTIAL_EXTRA_API_KEY_NAME];
|
|
13434
|
-
*
|
|
13435
|
-
* // Dynamic property access
|
|
13436
|
-
* const propertyName = KEY_ORGANIZATION_CREDENTIAL_EXTRA_API_KEY_NAME;
|
|
13437
|
-
* const value = organizationcredentialextra[propertyName];
|
|
13438
|
-
* ```
|
|
13439
|
-
*
|
|
13440
|
-
* @see {@link OrganizationCredentialExtra} - The TypeScript type definition
|
|
13441
|
-
* @see {@link KEYS_ORGANIZATION_CREDENTIAL_EXTRA} - Array of all keys for this type
|
|
13442
|
-
*/
|
|
13443
|
-
export const KEY_ORGANIZATION_CREDENTIAL_EXTRA_API_KEY_NAME = 'api_key_name' as keyof OrganizationCredentialExtra;
|
|
13444
|
-
/**
|
|
13445
|
-
* Expires At
|
|
13446
|
-
*
|
|
13447
|
-
* The date and time the credential expiration.
|
|
13448
|
-
*
|
|
13449
|
-
*
|
|
13450
|
-
*
|
|
13451
|
-
* @remarks
|
|
13452
|
-
* This key constant provides type-safe access to the `expires_at` property of OrganizationCredentialExtra objects.
|
|
13453
|
-
* Use this constant when you need to access properties dynamically or ensure type safety.
|
|
13454
|
-
*
|
|
13455
|
-
* @example
|
|
13456
|
-
* ```typescript
|
|
13457
|
-
* // Direct property access
|
|
13458
|
-
* const value = organizationcredentialextra[KEY_ORGANIZATION_CREDENTIAL_EXTRA_EXPIRES_AT];
|
|
13459
|
-
*
|
|
13460
|
-
* // Dynamic property access
|
|
13461
|
-
* const propertyName = KEY_ORGANIZATION_CREDENTIAL_EXTRA_EXPIRES_AT;
|
|
13462
|
-
* const value = organizationcredentialextra[propertyName];
|
|
13463
|
-
* ```
|
|
13464
|
-
*
|
|
13465
|
-
* @see {@link OrganizationCredentialExtra} - The TypeScript type definition
|
|
13466
|
-
* @see {@link KEYS_ORGANIZATION_CREDENTIAL_EXTRA} - Array of all keys for this type
|
|
13467
|
-
*/
|
|
13468
|
-
export const KEY_ORGANIZATION_CREDENTIAL_EXTRA_EXPIRES_AT = 'expires_at' as keyof OrganizationCredentialExtra;
|
|
13469
|
-
|
|
13470
|
-
/**
|
|
13471
|
-
* Array of all OrganizationCredentialExtra property keys
|
|
13472
|
-
*
|
|
13473
|
-
* @remarks
|
|
13474
|
-
* This constant provides a readonly array containing all valid property keys for OrganizationCredentialExtra objects.
|
|
13475
|
-
* Useful for iteration, validation, and generating dynamic UI components.
|
|
13476
|
-
*
|
|
13477
|
-
* @example
|
|
13478
|
-
* ```typescript
|
|
13479
|
-
* // Iterating through all keys
|
|
13480
|
-
* for (const key of KEYS_ORGANIZATION_CREDENTIAL_EXTRA) {
|
|
13481
|
-
* console.log(`Property: ${key}, Value: ${organizationcredentialextra[key]}`);
|
|
13482
|
-
* }
|
|
13483
|
-
*
|
|
13484
|
-
* // Validation
|
|
13485
|
-
* const isValidKey = KEYS_ORGANIZATION_CREDENTIAL_EXTRA.includes(someKey);
|
|
13486
|
-
* ```
|
|
13487
|
-
*
|
|
13488
|
-
* @see {@link OrganizationCredentialExtra} - The TypeScript type definition
|
|
13489
|
-
*/
|
|
13490
|
-
export const KEYS_ORGANIZATION_CREDENTIAL_EXTRA = [
|
|
13491
|
-
KEY_ORGANIZATION_CREDENTIAL_EXTRA_API_KEY_DESCRIPTION,
|
|
13492
|
-
KEY_ORGANIZATION_CREDENTIAL_EXTRA_API_KEY_NAME,
|
|
13493
|
-
KEY_ORGANIZATION_CREDENTIAL_EXTRA_EXPIRES_AT,
|
|
13494
|
-
] as const satisfies (keyof OrganizationCredentialExtra)[];
|
|
13495
|
-
|
|
13496
|
-
/**
|
|
13497
|
-
* Access Token
|
|
13498
|
-
*
|
|
13499
|
-
*
|
|
13500
|
-
* @type {string}
|
|
13501
|
-
*
|
|
13502
|
-
*
|
|
13503
|
-
* @remarks
|
|
13504
|
-
* This key constant provides type-safe access to the `access_token` property of OrganizationToken objects.
|
|
13505
|
-
* Use this constant when you need to access properties dynamically or ensure type safety.
|
|
13506
|
-
*
|
|
13507
|
-
* @example
|
|
13508
|
-
* ```typescript
|
|
13509
|
-
* // Direct property access
|
|
13510
|
-
* const value = organizationtoken[KEY_ORGANIZATION_TOKEN_ACCESS_TOKEN];
|
|
13511
|
-
*
|
|
13512
|
-
* // Dynamic property access
|
|
13513
|
-
* const propertyName = KEY_ORGANIZATION_TOKEN_ACCESS_TOKEN;
|
|
13514
|
-
* const value = organizationtoken[propertyName];
|
|
13515
|
-
* ```
|
|
13516
|
-
*
|
|
13517
|
-
* @see {@link OrganizationToken} - The TypeScript type definition
|
|
13518
|
-
* @see {@link KEYS_ORGANIZATION_TOKEN} - Array of all keys for this type
|
|
13519
|
-
*/
|
|
13520
|
-
export const KEY_ORGANIZATION_TOKEN_ACCESS_TOKEN = 'access_token' as keyof OrganizationToken;
|
|
13521
|
-
/**
|
|
13522
|
-
* Expires In
|
|
13523
|
-
*
|
|
13524
|
-
*
|
|
13525
|
-
* @type {integer}
|
|
13526
|
-
*
|
|
13527
|
-
*
|
|
13528
|
-
* @remarks
|
|
13529
|
-
* This key constant provides type-safe access to the `expires_in` property of OrganizationToken objects.
|
|
13530
|
-
* Use this constant when you need to access properties dynamically or ensure type safety.
|
|
13531
|
-
*
|
|
13532
|
-
* @example
|
|
13533
|
-
* ```typescript
|
|
13534
|
-
* // Direct property access
|
|
13535
|
-
* const value = organizationtoken[KEY_ORGANIZATION_TOKEN_EXPIRES_IN];
|
|
13536
|
-
*
|
|
13537
|
-
* // Dynamic property access
|
|
13538
|
-
* const propertyName = KEY_ORGANIZATION_TOKEN_EXPIRES_IN;
|
|
13539
|
-
* const value = organizationtoken[propertyName];
|
|
13540
|
-
* ```
|
|
13541
|
-
*
|
|
13542
|
-
* @see {@link OrganizationToken} - The TypeScript type definition
|
|
13543
|
-
* @see {@link KEYS_ORGANIZATION_TOKEN} - Array of all keys for this type
|
|
13544
|
-
*/
|
|
13545
|
-
export const KEY_ORGANIZATION_TOKEN_EXPIRES_IN = 'expires_in' as keyof OrganizationToken;
|
|
13546
|
-
/**
|
|
13547
|
-
* Token Type
|
|
13548
|
-
*
|
|
13549
|
-
*
|
|
13550
|
-
* @type {string}
|
|
13551
|
-
*
|
|
13552
|
-
*
|
|
13553
|
-
* @remarks
|
|
13554
|
-
* This key constant provides type-safe access to the `token_type` property of OrganizationToken objects.
|
|
13555
|
-
* Use this constant when you need to access properties dynamically or ensure type safety.
|
|
13556
|
-
*
|
|
13557
|
-
* @example
|
|
13558
|
-
* ```typescript
|
|
13559
|
-
* // Direct property access
|
|
13560
|
-
* const value = organizationtoken[KEY_ORGANIZATION_TOKEN_TOKEN_TYPE];
|
|
13561
|
-
*
|
|
13562
|
-
* // Dynamic property access
|
|
13563
|
-
* const propertyName = KEY_ORGANIZATION_TOKEN_TOKEN_TYPE;
|
|
13564
|
-
* const value = organizationtoken[propertyName];
|
|
13565
|
-
* ```
|
|
13566
|
-
*
|
|
13567
|
-
* @see {@link OrganizationToken} - The TypeScript type definition
|
|
13568
|
-
* @see {@link KEYS_ORGANIZATION_TOKEN} - Array of all keys for this type
|
|
13569
|
-
*/
|
|
13570
|
-
export const KEY_ORGANIZATION_TOKEN_TOKEN_TYPE = 'token_type' as keyof OrganizationToken;
|
|
13571
|
-
|
|
13572
|
-
/**
|
|
13573
|
-
* Array of all OrganizationToken property keys
|
|
13574
|
-
*
|
|
13575
|
-
* @remarks
|
|
13576
|
-
* This constant provides a readonly array containing all valid property keys for OrganizationToken objects.
|
|
13577
|
-
* Useful for iteration, validation, and generating dynamic UI components.
|
|
13578
|
-
*
|
|
13579
|
-
* @example
|
|
13580
|
-
* ```typescript
|
|
13581
|
-
* // Iterating through all keys
|
|
13582
|
-
* for (const key of KEYS_ORGANIZATION_TOKEN) {
|
|
13583
|
-
* console.log(`Property: ${key}, Value: ${organizationtoken[key]}`);
|
|
13584
|
-
* }
|
|
13585
|
-
*
|
|
13586
|
-
* // Validation
|
|
13587
|
-
* const isValidKey = KEYS_ORGANIZATION_TOKEN.includes(someKey);
|
|
13588
|
-
* ```
|
|
13589
|
-
*
|
|
13590
|
-
* @see {@link OrganizationToken} - The TypeScript type definition
|
|
13591
|
-
*/
|
|
13592
|
-
export const KEYS_ORGANIZATION_TOKEN = [
|
|
13593
|
-
KEY_ORGANIZATION_TOKEN_ACCESS_TOKEN,
|
|
13594
|
-
KEY_ORGANIZATION_TOKEN_EXPIRES_IN,
|
|
13595
|
-
KEY_ORGANIZATION_TOKEN_TOKEN_TYPE,
|
|
13596
|
-
] as const satisfies (keyof OrganizationToken)[];
|
|
13597
|
-
|
|
13598
|
-
/**
|
|
13599
|
-
* Address 1
|
|
13600
|
-
*
|
|
13601
|
-
* First line of the organization's address.
|
|
13602
|
-
*
|
|
13603
|
-
*
|
|
13604
|
-
*
|
|
13605
|
-
* @remarks
|
|
13606
|
-
* This key constant provides type-safe access to the `address_1` property of OrganizationUpdate objects.
|
|
13607
|
-
* Use this constant when you need to access properties dynamically or ensure type safety.
|
|
13608
|
-
*
|
|
13609
|
-
* @example
|
|
13610
|
-
* ```typescript
|
|
13611
|
-
* // Direct property access
|
|
13612
|
-
* const value = organizationupdate[KEY_ORGANIZATION_UPDATE_ADDRESS_1];
|
|
13613
|
-
*
|
|
13614
|
-
* // Dynamic property access
|
|
13615
|
-
* const propertyName = KEY_ORGANIZATION_UPDATE_ADDRESS_1;
|
|
13616
|
-
* const value = organizationupdate[propertyName];
|
|
13617
|
-
* ```
|
|
13618
|
-
*
|
|
13619
|
-
* @see {@link OrganizationUpdate} - The TypeScript type definition
|
|
13620
|
-
* @see {@link KEYS_ORGANIZATION_UPDATE} - Array of all keys for this type
|
|
13621
|
-
*/
|
|
13622
|
-
export const KEY_ORGANIZATION_UPDATE_ADDRESS_1 = 'address_1' as keyof OrganizationUpdate;
|
|
13623
|
-
/**
|
|
13624
|
-
* Address 2
|
|
13625
|
-
*
|
|
13626
|
-
* Second line of the organization's address.
|
|
13627
|
-
*
|
|
13628
|
-
*
|
|
13629
|
-
*
|
|
13630
|
-
* @remarks
|
|
13631
|
-
* This key constant provides type-safe access to the `address_2` property of OrganizationUpdate objects.
|
|
13632
|
-
* Use this constant when you need to access properties dynamically or ensure type safety.
|
|
13633
|
-
*
|
|
13634
|
-
* @example
|
|
13635
|
-
* ```typescript
|
|
13636
|
-
* // Direct property access
|
|
13637
|
-
* const value = organizationupdate[KEY_ORGANIZATION_UPDATE_ADDRESS_2];
|
|
13638
|
-
*
|
|
13639
|
-
* // Dynamic property access
|
|
13640
|
-
* const propertyName = KEY_ORGANIZATION_UPDATE_ADDRESS_2;
|
|
13641
|
-
* const value = organizationupdate[propertyName];
|
|
13642
|
-
* ```
|
|
13643
|
-
*
|
|
13644
|
-
* @see {@link OrganizationUpdate} - The TypeScript type definition
|
|
13645
|
-
* @see {@link KEYS_ORGANIZATION_UPDATE} - Array of all keys for this type
|
|
13646
|
-
*/
|
|
13647
|
-
export const KEY_ORGANIZATION_UPDATE_ADDRESS_2 = 'address_2' as keyof OrganizationUpdate;
|
|
13648
|
-
/**
|
|
13649
|
-
* Business Number
|
|
13650
|
-
*
|
|
13651
|
-
* Government issued business identifier for the organization issued.
|
|
13652
|
-
*
|
|
13653
|
-
*
|
|
13654
|
-
*
|
|
13655
|
-
* @remarks
|
|
13656
|
-
* This key constant provides type-safe access to the `business_number` property of OrganizationUpdate objects.
|
|
13657
|
-
* Use this constant when you need to access properties dynamically or ensure type safety.
|
|
13658
|
-
*
|
|
13659
|
-
* @example
|
|
13660
|
-
* ```typescript
|
|
13661
|
-
* // Direct property access
|
|
13662
|
-
* const value = organizationupdate[KEY_ORGANIZATION_UPDATE_BUSINESS_NUMBER];
|
|
13663
|
-
*
|
|
13664
|
-
* // Dynamic property access
|
|
13665
|
-
* const propertyName = KEY_ORGANIZATION_UPDATE_BUSINESS_NUMBER;
|
|
13666
|
-
* const value = organizationupdate[propertyName];
|
|
13667
|
-
* ```
|
|
13668
|
-
*
|
|
13669
|
-
* @see {@link OrganizationUpdate} - The TypeScript type definition
|
|
13670
|
-
* @see {@link KEYS_ORGANIZATION_UPDATE} - Array of all keys for this type
|
|
13671
|
-
*/
|
|
13672
|
-
export const KEY_ORGANIZATION_UPDATE_BUSINESS_NUMBER = 'business_number' as keyof OrganizationUpdate;
|
|
13673
|
-
/**
|
|
13674
|
-
* City
|
|
13675
|
-
*
|
|
13676
|
-
* City of the organization's address.
|
|
13677
|
-
*
|
|
13678
|
-
*
|
|
13679
|
-
*
|
|
13680
|
-
* @remarks
|
|
13681
|
-
* This key constant provides type-safe access to the `city` property of OrganizationUpdate objects.
|
|
13682
|
-
* Use this constant when you need to access properties dynamically or ensure type safety.
|
|
13683
|
-
*
|
|
13684
|
-
* @example
|
|
13685
|
-
* ```typescript
|
|
13686
|
-
* // Direct property access
|
|
13687
|
-
* const value = organizationupdate[KEY_ORGANIZATION_UPDATE_CITY];
|
|
13688
|
-
*
|
|
13689
|
-
* // Dynamic property access
|
|
13690
|
-
* const propertyName = KEY_ORGANIZATION_UPDATE_CITY;
|
|
13691
|
-
* const value = organizationupdate[propertyName];
|
|
13692
|
-
* ```
|
|
13693
|
-
*
|
|
13694
|
-
* @see {@link OrganizationUpdate} - The TypeScript type definition
|
|
13695
|
-
* @see {@link KEYS_ORGANIZATION_UPDATE} - Array of all keys for this type
|
|
13696
|
-
*/
|
|
13697
|
-
export const KEY_ORGANIZATION_UPDATE_CITY = 'city' as keyof OrganizationUpdate;
|
|
13698
|
-
/**
|
|
13699
|
-
* Country Code
|
|
13700
|
-
*
|
|
13701
|
-
*
|
|
13702
|
-
*
|
|
13703
|
-
*
|
|
13704
|
-
* @remarks
|
|
13705
|
-
* This key constant provides type-safe access to the `country_code` property of OrganizationUpdate objects.
|
|
13706
|
-
* Use this constant when you need to access properties dynamically or ensure type safety.
|
|
13707
|
-
*
|
|
13708
|
-
* @example
|
|
13709
|
-
* ```typescript
|
|
13710
|
-
* // Direct property access
|
|
13711
|
-
* const value = organizationupdate[KEY_ORGANIZATION_UPDATE_COUNTRY_CODE];
|
|
13712
|
-
*
|
|
13713
|
-
* // Dynamic property access
|
|
13714
|
-
* const propertyName = KEY_ORGANIZATION_UPDATE_COUNTRY_CODE;
|
|
13715
|
-
* const value = organizationupdate[propertyName];
|
|
13716
|
-
* ```
|
|
13717
|
-
*
|
|
13718
|
-
* @see {@link OrganizationUpdate} - The TypeScript type definition
|
|
13719
|
-
* @see {@link KEYS_ORGANIZATION_UPDATE} - Array of all keys for this type
|
|
13720
|
-
*/
|
|
13721
|
-
export const KEY_ORGANIZATION_UPDATE_COUNTRY_CODE = 'country_code' as keyof OrganizationUpdate;
|
|
13722
|
-
/**
|
|
13723
|
-
* Default Locale
|
|
13724
|
-
*
|
|
13725
|
-
* Default locale for the organization.
|
|
13726
|
-
*
|
|
13727
|
-
*
|
|
13728
|
-
*
|
|
13729
|
-
* @remarks
|
|
13730
|
-
* This key constant provides type-safe access to the `default_locale` property of OrganizationUpdate objects.
|
|
13731
|
-
* Use this constant when you need to access properties dynamically or ensure type safety.
|
|
13732
|
-
*
|
|
13733
|
-
* @example
|
|
13734
|
-
* ```typescript
|
|
13735
|
-
* // Direct property access
|
|
13736
|
-
* const value = organizationupdate[KEY_ORGANIZATION_UPDATE_DEFAULT_LOCALE];
|
|
13737
|
-
*
|
|
13738
|
-
* // Dynamic property access
|
|
13739
|
-
* const propertyName = KEY_ORGANIZATION_UPDATE_DEFAULT_LOCALE;
|
|
13740
|
-
* const value = organizationupdate[propertyName];
|
|
13741
|
-
* ```
|
|
13742
|
-
*
|
|
13743
|
-
* @see {@link OrganizationUpdate} - The TypeScript type definition
|
|
13744
|
-
* @see {@link KEYS_ORGANIZATION_UPDATE} - Array of all keys for this type
|
|
13745
|
-
*/
|
|
13746
|
-
export const KEY_ORGANIZATION_UPDATE_DEFAULT_LOCALE = 'default_locale' as keyof OrganizationUpdate;
|
|
13747
|
-
/**
|
|
13748
|
-
* Name
|
|
13749
|
-
*
|
|
13750
|
-
* Name of the organization.
|
|
13751
|
-
*
|
|
13752
|
-
*
|
|
13753
|
-
*
|
|
13754
|
-
* @remarks
|
|
13755
|
-
* This key constant provides type-safe access to the `name` property of OrganizationUpdate objects.
|
|
13756
|
-
* Use this constant when you need to access properties dynamically or ensure type safety.
|
|
13757
|
-
*
|
|
13758
|
-
* @example
|
|
13759
|
-
* ```typescript
|
|
13760
|
-
* // Direct property access
|
|
13761
|
-
* const value = organizationupdate[KEY_ORGANIZATION_UPDATE_NAME];
|
|
13762
|
-
*
|
|
13763
|
-
* // Dynamic property access
|
|
13764
|
-
* const propertyName = KEY_ORGANIZATION_UPDATE_NAME;
|
|
13765
|
-
* const value = organizationupdate[propertyName];
|
|
13766
|
-
* ```
|
|
13767
|
-
*
|
|
13768
|
-
* @see {@link OrganizationUpdate} - The TypeScript type definition
|
|
13769
|
-
* @see {@link KEYS_ORGANIZATION_UPDATE} - Array of all keys for this type
|
|
13770
|
-
*/
|
|
13771
|
-
export const KEY_ORGANIZATION_UPDATE_NAME = 'name' as keyof OrganizationUpdate;
|
|
13772
|
-
/**
|
|
13773
|
-
* Postal Code
|
|
13774
|
-
*
|
|
13775
|
-
* Postal code of the organization's address.
|
|
13776
|
-
*
|
|
13777
|
-
*
|
|
13778
|
-
*
|
|
13779
|
-
* @remarks
|
|
13780
|
-
* This key constant provides type-safe access to the `postal_code` property of OrganizationUpdate objects.
|
|
13781
|
-
* Use this constant when you need to access properties dynamically or ensure type safety.
|
|
13782
|
-
*
|
|
13783
|
-
* @example
|
|
13784
|
-
* ```typescript
|
|
13785
|
-
* // Direct property access
|
|
13786
|
-
* const value = organizationupdate[KEY_ORGANIZATION_UPDATE_POSTAL_CODE];
|
|
13787
|
-
*
|
|
13788
|
-
* // Dynamic property access
|
|
13789
|
-
* const propertyName = KEY_ORGANIZATION_UPDATE_POSTAL_CODE;
|
|
13790
|
-
* const value = organizationupdate[propertyName];
|
|
13791
|
-
* ```
|
|
13792
|
-
*
|
|
13793
|
-
* @see {@link OrganizationUpdate} - The TypeScript type definition
|
|
13794
|
-
* @see {@link KEYS_ORGANIZATION_UPDATE} - Array of all keys for this type
|
|
13795
|
-
*/
|
|
13796
|
-
export const KEY_ORGANIZATION_UPDATE_POSTAL_CODE = 'postal_code' as keyof OrganizationUpdate;
|
|
13797
|
-
/**
|
|
13798
|
-
* State
|
|
13799
|
-
*
|
|
13800
|
-
* State or province of the organization's address.
|
|
13801
|
-
*
|
|
13802
|
-
*
|
|
13803
|
-
*
|
|
13804
|
-
* @remarks
|
|
13805
|
-
* This key constant provides type-safe access to the `state` property of OrganizationUpdate objects.
|
|
13806
|
-
* Use this constant when you need to access properties dynamically or ensure type safety.
|
|
13807
|
-
*
|
|
13808
|
-
* @example
|
|
13809
|
-
* ```typescript
|
|
13810
|
-
* // Direct property access
|
|
13811
|
-
* const value = organizationupdate[KEY_ORGANIZATION_UPDATE_STATE];
|
|
13812
|
-
*
|
|
13813
|
-
* // Dynamic property access
|
|
13814
|
-
* const propertyName = KEY_ORGANIZATION_UPDATE_STATE;
|
|
13815
|
-
* const value = organizationupdate[propertyName];
|
|
13057
|
+
* const propertyName = KEY_ORGANIZATION_UPDATE_STATE;
|
|
13058
|
+
* const value = organizationupdate[propertyName];
|
|
13816
13059
|
* ```
|
|
13817
13060
|
*
|
|
13818
13061
|
* @see {@link OrganizationUpdate} - The TypeScript type definition
|
|
@@ -15602,31 +14845,136 @@ export const KEY_PROBLEM_TITLE = 'title' as keyof Problem;
|
|
|
15602
14845
|
export const KEY_PROBLEM_TYPE = 'type' as keyof Problem;
|
|
15603
14846
|
|
|
15604
14847
|
/**
|
|
15605
|
-
* Array of all Problem property keys
|
|
14848
|
+
* Array of all Problem property keys
|
|
14849
|
+
*
|
|
14850
|
+
* @remarks
|
|
14851
|
+
* This constant provides a readonly array containing all valid property keys for Problem objects.
|
|
14852
|
+
* Useful for iteration, validation, and generating dynamic UI components.
|
|
14853
|
+
*
|
|
14854
|
+
* @example
|
|
14855
|
+
* ```typescript
|
|
14856
|
+
* // Iterating through all keys
|
|
14857
|
+
* for (const key of KEYS_PROBLEM) {
|
|
14858
|
+
* console.log(`Property: ${key}, Value: ${problem[key]}`);
|
|
14859
|
+
* }
|
|
14860
|
+
*
|
|
14861
|
+
* // Validation
|
|
14862
|
+
* const isValidKey = KEYS_PROBLEM.includes(someKey);
|
|
14863
|
+
* ```
|
|
14864
|
+
*
|
|
14865
|
+
* @see {@link Problem} - The TypeScript type definition
|
|
14866
|
+
*/
|
|
14867
|
+
export const KEYS_PROBLEM = [
|
|
14868
|
+
KEY_PROBLEM_DETAIL,
|
|
14869
|
+
KEY_PROBLEM_STATUS,
|
|
14870
|
+
KEY_PROBLEM_TITLE,
|
|
14871
|
+
KEY_PROBLEM_TYPE,
|
|
14872
|
+
] as const satisfies (keyof Problem)[];
|
|
14873
|
+
|
|
14874
|
+
/**
|
|
14875
|
+
* Client Id
|
|
14876
|
+
*
|
|
14877
|
+
* The organization ID associated with the credentials.
|
|
14878
|
+
*
|
|
14879
|
+
* @type {string}
|
|
14880
|
+
*
|
|
14881
|
+
*
|
|
14882
|
+
* @remarks
|
|
14883
|
+
* This key constant provides type-safe access to the `client_id` property of PublicAuthRequestForm objects.
|
|
14884
|
+
* Use this constant when you need to access properties dynamically or ensure type safety.
|
|
14885
|
+
*
|
|
14886
|
+
* @example
|
|
14887
|
+
* ```typescript
|
|
14888
|
+
* // Direct property access
|
|
14889
|
+
* const value = publicauthrequestform[KEY_PUBLIC_AUTH_REQUEST_FORM_CLIENT_ID];
|
|
14890
|
+
*
|
|
14891
|
+
* // Dynamic property access
|
|
14892
|
+
* const propertyName = KEY_PUBLIC_AUTH_REQUEST_FORM_CLIENT_ID;
|
|
14893
|
+
* const value = publicauthrequestform[propertyName];
|
|
14894
|
+
* ```
|
|
14895
|
+
*
|
|
14896
|
+
* @see {@link PublicAuthRequestForm} - The TypeScript type definition
|
|
14897
|
+
* @see {@link KEYS_PUBLIC_AUTH_REQUEST_FORM} - Array of all keys for this type
|
|
14898
|
+
*/
|
|
14899
|
+
export const KEY_PUBLIC_AUTH_REQUEST_FORM_CLIENT_ID = 'client_id' as keyof PublicAuthRequestForm;
|
|
14900
|
+
/**
|
|
14901
|
+
* Client Secret
|
|
14902
|
+
*
|
|
14903
|
+
* Client secret for authentication.
|
|
14904
|
+
*
|
|
14905
|
+
* @type {string}
|
|
14906
|
+
*
|
|
14907
|
+
*
|
|
14908
|
+
* @remarks
|
|
14909
|
+
* This key constant provides type-safe access to the `client_secret` property of PublicAuthRequestForm objects.
|
|
14910
|
+
* Use this constant when you need to access properties dynamically or ensure type safety.
|
|
14911
|
+
*
|
|
14912
|
+
* @example
|
|
14913
|
+
* ```typescript
|
|
14914
|
+
* // Direct property access
|
|
14915
|
+
* const value = publicauthrequestform[KEY_PUBLIC_AUTH_REQUEST_FORM_CLIENT_SECRET];
|
|
14916
|
+
*
|
|
14917
|
+
* // Dynamic property access
|
|
14918
|
+
* const propertyName = KEY_PUBLIC_AUTH_REQUEST_FORM_CLIENT_SECRET;
|
|
14919
|
+
* const value = publicauthrequestform[propertyName];
|
|
14920
|
+
* ```
|
|
14921
|
+
*
|
|
14922
|
+
* @see {@link PublicAuthRequestForm} - The TypeScript type definition
|
|
14923
|
+
* @see {@link KEYS_PUBLIC_AUTH_REQUEST_FORM} - Array of all keys for this type
|
|
14924
|
+
*/
|
|
14925
|
+
export const KEY_PUBLIC_AUTH_REQUEST_FORM_CLIENT_SECRET = 'client_secret' as keyof PublicAuthRequestForm;
|
|
14926
|
+
/**
|
|
14927
|
+
* Grant Type
|
|
14928
|
+
*
|
|
14929
|
+
* The grant type for the authentication request (should always be 'client_credentials').
|
|
14930
|
+
*
|
|
14931
|
+
* @type {string}
|
|
14932
|
+
*
|
|
14933
|
+
*
|
|
14934
|
+
* @remarks
|
|
14935
|
+
* This key constant provides type-safe access to the `grant_type` property of PublicAuthRequestForm objects.
|
|
14936
|
+
* Use this constant when you need to access properties dynamically or ensure type safety.
|
|
14937
|
+
*
|
|
14938
|
+
* @example
|
|
14939
|
+
* ```typescript
|
|
14940
|
+
* // Direct property access
|
|
14941
|
+
* const value = publicauthrequestform[KEY_PUBLIC_AUTH_REQUEST_FORM_GRANT_TYPE];
|
|
14942
|
+
*
|
|
14943
|
+
* // Dynamic property access
|
|
14944
|
+
* const propertyName = KEY_PUBLIC_AUTH_REQUEST_FORM_GRANT_TYPE;
|
|
14945
|
+
* const value = publicauthrequestform[propertyName];
|
|
14946
|
+
* ```
|
|
14947
|
+
*
|
|
14948
|
+
* @see {@link PublicAuthRequestForm} - The TypeScript type definition
|
|
14949
|
+
* @see {@link KEYS_PUBLIC_AUTH_REQUEST_FORM} - Array of all keys for this type
|
|
14950
|
+
*/
|
|
14951
|
+
export const KEY_PUBLIC_AUTH_REQUEST_FORM_GRANT_TYPE = 'grant_type' as keyof PublicAuthRequestForm;
|
|
14952
|
+
|
|
14953
|
+
/**
|
|
14954
|
+
* Array of all PublicAuthRequestForm property keys
|
|
15606
14955
|
*
|
|
15607
14956
|
* @remarks
|
|
15608
|
-
* This constant provides a readonly array containing all valid property keys for
|
|
14957
|
+
* This constant provides a readonly array containing all valid property keys for PublicAuthRequestForm objects.
|
|
15609
14958
|
* Useful for iteration, validation, and generating dynamic UI components.
|
|
15610
14959
|
*
|
|
15611
14960
|
* @example
|
|
15612
14961
|
* ```typescript
|
|
15613
14962
|
* // Iterating through all keys
|
|
15614
|
-
* for (const key of
|
|
15615
|
-
* console.log(`Property: ${key}, Value: ${
|
|
14963
|
+
* for (const key of KEYS_PUBLIC_AUTH_REQUEST_FORM) {
|
|
14964
|
+
* console.log(`Property: ${key}, Value: ${publicauthrequestform[key]}`);
|
|
15616
14965
|
* }
|
|
15617
14966
|
*
|
|
15618
14967
|
* // Validation
|
|
15619
|
-
* const isValidKey =
|
|
14968
|
+
* const isValidKey = KEYS_PUBLIC_AUTH_REQUEST_FORM.includes(someKey);
|
|
15620
14969
|
* ```
|
|
15621
14970
|
*
|
|
15622
|
-
* @see {@link
|
|
14971
|
+
* @see {@link PublicAuthRequestForm} - The TypeScript type definition
|
|
15623
14972
|
*/
|
|
15624
|
-
export const
|
|
15625
|
-
|
|
15626
|
-
|
|
15627
|
-
|
|
15628
|
-
|
|
15629
|
-
] as const satisfies (keyof Problem)[];
|
|
14973
|
+
export const KEYS_PUBLIC_AUTH_REQUEST_FORM = [
|
|
14974
|
+
KEY_PUBLIC_AUTH_REQUEST_FORM_CLIENT_ID,
|
|
14975
|
+
KEY_PUBLIC_AUTH_REQUEST_FORM_CLIENT_SECRET,
|
|
14976
|
+
KEY_PUBLIC_AUTH_REQUEST_FORM_GRANT_TYPE,
|
|
14977
|
+
] as const satisfies (keyof PublicAuthRequestForm)[];
|
|
15630
14978
|
|
|
15631
14979
|
/**
|
|
15632
14980
|
* Rdap Server
|
|
@@ -16038,208 +15386,6 @@ export const KEYS_RGP_OPERATIONS = [
|
|
|
16038
15386
|
KEY_RGP_OPERATIONS_REQUEST,
|
|
16039
15387
|
] as const satisfies (keyof RgpOperations)[];
|
|
16040
15388
|
|
|
16041
|
-
/**
|
|
16042
|
-
* Agreements
|
|
16043
|
-
*
|
|
16044
|
-
* User agreement acceptances.
|
|
16045
|
-
*
|
|
16046
|
-
*
|
|
16047
|
-
*
|
|
16048
|
-
* @remarks
|
|
16049
|
-
* This key constant provides type-safe access to the `agreements` property of SignupCreate objects.
|
|
16050
|
-
* Use this constant when you need to access properties dynamically or ensure type safety.
|
|
16051
|
-
*
|
|
16052
|
-
* @example
|
|
16053
|
-
* ```typescript
|
|
16054
|
-
* // Direct property access
|
|
16055
|
-
* const value = signupcreate[KEY_SIGNUP_CREATE_AGREEMENTS];
|
|
16056
|
-
*
|
|
16057
|
-
* // Dynamic property access
|
|
16058
|
-
* const propertyName = KEY_SIGNUP_CREATE_AGREEMENTS;
|
|
16059
|
-
* const value = signupcreate[propertyName];
|
|
16060
|
-
* ```
|
|
16061
|
-
*
|
|
16062
|
-
* @see {@link SignupCreate} - The TypeScript type definition
|
|
16063
|
-
* @see {@link KEYS_SIGNUP_CREATE} - Array of all keys for this type
|
|
16064
|
-
*/
|
|
16065
|
-
export const KEY_SIGNUP_CREATE_AGREEMENTS = 'agreements' as keyof SignupCreate;
|
|
16066
|
-
/**
|
|
16067
|
-
* organization property
|
|
16068
|
-
*
|
|
16069
|
-
* Organization signup.
|
|
16070
|
-
*
|
|
16071
|
-
*
|
|
16072
|
-
*
|
|
16073
|
-
* @remarks
|
|
16074
|
-
* This key constant provides type-safe access to the `organization` property of SignupCreate objects.
|
|
16075
|
-
* Use this constant when you need to access properties dynamically or ensure type safety.
|
|
16076
|
-
*
|
|
16077
|
-
* @example
|
|
16078
|
-
* ```typescript
|
|
16079
|
-
* // Direct property access
|
|
16080
|
-
* const value = signupcreate[KEY_SIGNUP_CREATE_ORGANIZATION];
|
|
16081
|
-
*
|
|
16082
|
-
* // Dynamic property access
|
|
16083
|
-
* const propertyName = KEY_SIGNUP_CREATE_ORGANIZATION;
|
|
16084
|
-
* const value = signupcreate[propertyName];
|
|
16085
|
-
* ```
|
|
16086
|
-
*
|
|
16087
|
-
* @see {@link SignupCreate} - The TypeScript type definition
|
|
16088
|
-
* @see {@link KEYS_SIGNUP_CREATE} - Array of all keys for this type
|
|
16089
|
-
*/
|
|
16090
|
-
export const KEY_SIGNUP_CREATE_ORGANIZATION = 'organization' as keyof SignupCreate;
|
|
16091
|
-
/**
|
|
16092
|
-
* terms_of_service property
|
|
16093
|
-
*
|
|
16094
|
-
* Terms of service acceptance (legacy).
|
|
16095
|
-
*
|
|
16096
|
-
*
|
|
16097
|
-
*
|
|
16098
|
-
* @remarks
|
|
16099
|
-
* This key constant provides type-safe access to the `terms_of_service` property of SignupCreate objects.
|
|
16100
|
-
* Use this constant when you need to access properties dynamically or ensure type safety.
|
|
16101
|
-
*
|
|
16102
|
-
* @example
|
|
16103
|
-
* ```typescript
|
|
16104
|
-
* // Direct property access
|
|
16105
|
-
* const value = signupcreate[KEY_SIGNUP_CREATE_TERMS_OF_SERVICE];
|
|
16106
|
-
*
|
|
16107
|
-
* // Dynamic property access
|
|
16108
|
-
* const propertyName = KEY_SIGNUP_CREATE_TERMS_OF_SERVICE;
|
|
16109
|
-
* const value = signupcreate[propertyName];
|
|
16110
|
-
* ```
|
|
16111
|
-
*
|
|
16112
|
-
* @see {@link SignupCreate} - The TypeScript type definition
|
|
16113
|
-
* @see {@link KEYS_SIGNUP_CREATE} - Array of all keys for this type
|
|
16114
|
-
*/
|
|
16115
|
-
export const KEY_SIGNUP_CREATE_TERMS_OF_SERVICE = 'terms_of_service' as keyof SignupCreate;
|
|
16116
|
-
/**
|
|
16117
|
-
* user property
|
|
16118
|
-
*
|
|
16119
|
-
* User signup to platform.
|
|
16120
|
-
*
|
|
16121
|
-
*
|
|
16122
|
-
*
|
|
16123
|
-
* @remarks
|
|
16124
|
-
* This key constant provides type-safe access to the `user` property of SignupCreate objects.
|
|
16125
|
-
* Use this constant when you need to access properties dynamically or ensure type safety.
|
|
16126
|
-
*
|
|
16127
|
-
* @example
|
|
16128
|
-
* ```typescript
|
|
16129
|
-
* // Direct property access
|
|
16130
|
-
* const value = signupcreate[KEY_SIGNUP_CREATE_USER];
|
|
16131
|
-
*
|
|
16132
|
-
* // Dynamic property access
|
|
16133
|
-
* const propertyName = KEY_SIGNUP_CREATE_USER;
|
|
16134
|
-
* const value = signupcreate[propertyName];
|
|
16135
|
-
* ```
|
|
16136
|
-
*
|
|
16137
|
-
* @see {@link SignupCreate} - The TypeScript type definition
|
|
16138
|
-
* @see {@link KEYS_SIGNUP_CREATE} - Array of all keys for this type
|
|
16139
|
-
*/
|
|
16140
|
-
export const KEY_SIGNUP_CREATE_USER = 'user' as keyof SignupCreate;
|
|
16141
|
-
|
|
16142
|
-
/**
|
|
16143
|
-
* Array of all SignupCreate property keys
|
|
16144
|
-
*
|
|
16145
|
-
* @remarks
|
|
16146
|
-
* This constant provides a readonly array containing all valid property keys for SignupCreate objects.
|
|
16147
|
-
* Useful for iteration, validation, and generating dynamic UI components.
|
|
16148
|
-
*
|
|
16149
|
-
* @example
|
|
16150
|
-
* ```typescript
|
|
16151
|
-
* // Iterating through all keys
|
|
16152
|
-
* for (const key of KEYS_SIGNUP_CREATE) {
|
|
16153
|
-
* console.log(`Property: ${key}, Value: ${signupcreate[key]}`);
|
|
16154
|
-
* }
|
|
16155
|
-
*
|
|
16156
|
-
* // Validation
|
|
16157
|
-
* const isValidKey = KEYS_SIGNUP_CREATE.includes(someKey);
|
|
16158
|
-
* ```
|
|
16159
|
-
*
|
|
16160
|
-
* @see {@link SignupCreate} - The TypeScript type definition
|
|
16161
|
-
*/
|
|
16162
|
-
export const KEYS_SIGNUP_CREATE = [
|
|
16163
|
-
KEY_SIGNUP_CREATE_AGREEMENTS,
|
|
16164
|
-
KEY_SIGNUP_CREATE_ORGANIZATION,
|
|
16165
|
-
KEY_SIGNUP_CREATE_TERMS_OF_SERVICE,
|
|
16166
|
-
KEY_SIGNUP_CREATE_USER,
|
|
16167
|
-
] as const satisfies (keyof SignupCreate)[];
|
|
16168
|
-
|
|
16169
|
-
/**
|
|
16170
|
-
* organization property
|
|
16171
|
-
*
|
|
16172
|
-
*
|
|
16173
|
-
*
|
|
16174
|
-
*
|
|
16175
|
-
* @remarks
|
|
16176
|
-
* This key constant provides type-safe access to the `organization` property of Signup objects.
|
|
16177
|
-
* Use this constant when you need to access properties dynamically or ensure type safety.
|
|
16178
|
-
*
|
|
16179
|
-
* @example
|
|
16180
|
-
* ```typescript
|
|
16181
|
-
* // Direct property access
|
|
16182
|
-
* const value = signup[KEY_SIGNUP_ORGANIZATION];
|
|
16183
|
-
*
|
|
16184
|
-
* // Dynamic property access
|
|
16185
|
-
* const propertyName = KEY_SIGNUP_ORGANIZATION;
|
|
16186
|
-
* const value = signup[propertyName];
|
|
16187
|
-
* ```
|
|
16188
|
-
*
|
|
16189
|
-
* @see {@link Signup} - The TypeScript type definition
|
|
16190
|
-
* @see {@link KEYS_SIGNUP} - Array of all keys for this type
|
|
16191
|
-
*/
|
|
16192
|
-
export const KEY_SIGNUP_ORGANIZATION = 'organization' as keyof Signup;
|
|
16193
|
-
/**
|
|
16194
|
-
* user property
|
|
16195
|
-
*
|
|
16196
|
-
*
|
|
16197
|
-
*
|
|
16198
|
-
*
|
|
16199
|
-
* @remarks
|
|
16200
|
-
* This key constant provides type-safe access to the `user` property of Signup objects.
|
|
16201
|
-
* Use this constant when you need to access properties dynamically or ensure type safety.
|
|
16202
|
-
*
|
|
16203
|
-
* @example
|
|
16204
|
-
* ```typescript
|
|
16205
|
-
* // Direct property access
|
|
16206
|
-
* const value = signup[KEY_SIGNUP_USER];
|
|
16207
|
-
*
|
|
16208
|
-
* // Dynamic property access
|
|
16209
|
-
* const propertyName = KEY_SIGNUP_USER;
|
|
16210
|
-
* const value = signup[propertyName];
|
|
16211
|
-
* ```
|
|
16212
|
-
*
|
|
16213
|
-
* @see {@link Signup} - The TypeScript type definition
|
|
16214
|
-
* @see {@link KEYS_SIGNUP} - Array of all keys for this type
|
|
16215
|
-
*/
|
|
16216
|
-
export const KEY_SIGNUP_USER = 'user' as keyof Signup;
|
|
16217
|
-
|
|
16218
|
-
/**
|
|
16219
|
-
* Array of all Signup property keys
|
|
16220
|
-
*
|
|
16221
|
-
* @remarks
|
|
16222
|
-
* This constant provides a readonly array containing all valid property keys for Signup objects.
|
|
16223
|
-
* Useful for iteration, validation, and generating dynamic UI components.
|
|
16224
|
-
*
|
|
16225
|
-
* @example
|
|
16226
|
-
* ```typescript
|
|
16227
|
-
* // Iterating through all keys
|
|
16228
|
-
* for (const key of KEYS_SIGNUP) {
|
|
16229
|
-
* console.log(`Property: ${key}, Value: ${signup[key]}`);
|
|
16230
|
-
* }
|
|
16231
|
-
*
|
|
16232
|
-
* // Validation
|
|
16233
|
-
* const isValidKey = KEYS_SIGNUP.includes(someKey);
|
|
16234
|
-
* ```
|
|
16235
|
-
*
|
|
16236
|
-
* @see {@link Signup} - The TypeScript type definition
|
|
16237
|
-
*/
|
|
16238
|
-
export const KEYS_SIGNUP = [
|
|
16239
|
-
KEY_SIGNUP_ORGANIZATION,
|
|
16240
|
-
KEY_SIGNUP_USER,
|
|
16241
|
-
] as const satisfies (keyof Signup)[];
|
|
16242
|
-
|
|
16243
15389
|
/**
|
|
16244
15390
|
* Max
|
|
16245
15391
|
*
|
|
@@ -16392,57 +15538,6 @@ export const KEYS_SPICE_DB_RELATIONSHIP_UPDATE = [
|
|
|
16392
15538
|
KEY_SPICE_DB_RELATIONSHIP_UPDATE_REMOVE,
|
|
16393
15539
|
] as const satisfies (keyof SpiceDbRelationshipUpdate)[];
|
|
16394
15540
|
|
|
16395
|
-
/**
|
|
16396
|
-
* Accepted
|
|
16397
|
-
*
|
|
16398
|
-
* The organization accepts Terms of Service.
|
|
16399
|
-
*
|
|
16400
|
-
* @type {boolean}
|
|
16401
|
-
*
|
|
16402
|
-
*
|
|
16403
|
-
* @remarks
|
|
16404
|
-
* This key constant provides type-safe access to the `accepted` property of TermsOfServiceAccept objects.
|
|
16405
|
-
* Use this constant when you need to access properties dynamically or ensure type safety.
|
|
16406
|
-
*
|
|
16407
|
-
* @example
|
|
16408
|
-
* ```typescript
|
|
16409
|
-
* // Direct property access
|
|
16410
|
-
* const value = termsofserviceaccept[KEY_TERMS_OF_SERVICE_ACCEPT_ACCEPTED];
|
|
16411
|
-
*
|
|
16412
|
-
* // Dynamic property access
|
|
16413
|
-
* const propertyName = KEY_TERMS_OF_SERVICE_ACCEPT_ACCEPTED;
|
|
16414
|
-
* const value = termsofserviceaccept[propertyName];
|
|
16415
|
-
* ```
|
|
16416
|
-
*
|
|
16417
|
-
* @see {@link TermsOfServiceAccept} - The TypeScript type definition
|
|
16418
|
-
* @see {@link KEYS_TERMS_OF_SERVICE_ACCEPT} - Array of all keys for this type
|
|
16419
|
-
*/
|
|
16420
|
-
export const KEY_TERMS_OF_SERVICE_ACCEPT_ACCEPTED = 'accepted' as keyof TermsOfServiceAccept;
|
|
16421
|
-
|
|
16422
|
-
/**
|
|
16423
|
-
* Array of all TermsOfServiceAccept property keys
|
|
16424
|
-
*
|
|
16425
|
-
* @remarks
|
|
16426
|
-
* This constant provides a readonly array containing all valid property keys for TermsOfServiceAccept objects.
|
|
16427
|
-
* Useful for iteration, validation, and generating dynamic UI components.
|
|
16428
|
-
*
|
|
16429
|
-
* @example
|
|
16430
|
-
* ```typescript
|
|
16431
|
-
* // Iterating through all keys
|
|
16432
|
-
* for (const key of KEYS_TERMS_OF_SERVICE_ACCEPT) {
|
|
16433
|
-
* console.log(`Property: ${key}, Value: ${termsofserviceaccept[key]}`);
|
|
16434
|
-
* }
|
|
16435
|
-
*
|
|
16436
|
-
* // Validation
|
|
16437
|
-
* const isValidKey = KEYS_TERMS_OF_SERVICE_ACCEPT.includes(someKey);
|
|
16438
|
-
* ```
|
|
16439
|
-
*
|
|
16440
|
-
* @see {@link TermsOfServiceAccept} - The TypeScript type definition
|
|
16441
|
-
*/
|
|
16442
|
-
export const KEYS_TERMS_OF_SERVICE_ACCEPT = [
|
|
16443
|
-
KEY_TERMS_OF_SERVICE_ACCEPT_ACCEPTED,
|
|
16444
|
-
] as const satisfies (keyof TermsOfServiceAccept)[];
|
|
16445
|
-
|
|
16446
15541
|
/**
|
|
16447
15542
|
* Name
|
|
16448
15543
|
*
|
|
@@ -17924,135 +17019,6 @@ export const KEYS_USER = [
|
|
|
17924
17019
|
KEY_USER_USERNAME,
|
|
17925
17020
|
] as const satisfies (keyof User)[];
|
|
17926
17021
|
|
|
17927
|
-
/**
|
|
17928
|
-
* Accepted
|
|
17929
|
-
*
|
|
17930
|
-
* Whether the agreement has been accepted.
|
|
17931
|
-
*
|
|
17932
|
-
* @type {boolean}
|
|
17933
|
-
*
|
|
17934
|
-
*
|
|
17935
|
-
* @remarks
|
|
17936
|
-
* This key constant provides type-safe access to the `accepted` property of UserAgreementAcceptance objects.
|
|
17937
|
-
* Use this constant when you need to access properties dynamically or ensure type safety.
|
|
17938
|
-
*
|
|
17939
|
-
* @example
|
|
17940
|
-
* ```typescript
|
|
17941
|
-
* // Direct property access
|
|
17942
|
-
* const value = useragreementacceptance[KEY_USER_AGREEMENT_ACCEPTANCE_ACCEPTED];
|
|
17943
|
-
*
|
|
17944
|
-
* // Dynamic property access
|
|
17945
|
-
* const propertyName = KEY_USER_AGREEMENT_ACCEPTANCE_ACCEPTED;
|
|
17946
|
-
* const value = useragreementacceptance[propertyName];
|
|
17947
|
-
* ```
|
|
17948
|
-
*
|
|
17949
|
-
* @see {@link UserAgreementAcceptance} - The TypeScript type definition
|
|
17950
|
-
* @see {@link KEYS_USER_AGREEMENT_ACCEPTANCE} - Array of all keys for this type
|
|
17951
|
-
*/
|
|
17952
|
-
export const KEY_USER_AGREEMENT_ACCEPTANCE_ACCEPTED = 'accepted' as keyof UserAgreementAcceptance;
|
|
17953
|
-
/**
|
|
17954
|
-
* type property
|
|
17955
|
-
*
|
|
17956
|
-
* Type of agreement being accepted.
|
|
17957
|
-
*
|
|
17958
|
-
*
|
|
17959
|
-
*
|
|
17960
|
-
* @remarks
|
|
17961
|
-
* This key constant provides type-safe access to the `type` property of UserAgreementAcceptance objects.
|
|
17962
|
-
* Use this constant when you need to access properties dynamically or ensure type safety.
|
|
17963
|
-
*
|
|
17964
|
-
* @example
|
|
17965
|
-
* ```typescript
|
|
17966
|
-
* // Direct property access
|
|
17967
|
-
* const value = useragreementacceptance[KEY_USER_AGREEMENT_ACCEPTANCE_TYPE];
|
|
17968
|
-
*
|
|
17969
|
-
* // Dynamic property access
|
|
17970
|
-
* const propertyName = KEY_USER_AGREEMENT_ACCEPTANCE_TYPE;
|
|
17971
|
-
* const value = useragreementacceptance[propertyName];
|
|
17972
|
-
* ```
|
|
17973
|
-
*
|
|
17974
|
-
* @see {@link UserAgreementAcceptance} - The TypeScript type definition
|
|
17975
|
-
* @see {@link KEYS_USER_AGREEMENT_ACCEPTANCE} - Array of all keys for this type
|
|
17976
|
-
*/
|
|
17977
|
-
export const KEY_USER_AGREEMENT_ACCEPTANCE_TYPE = 'type' as keyof UserAgreementAcceptance;
|
|
17978
|
-
/**
|
|
17979
|
-
* Url
|
|
17980
|
-
*
|
|
17981
|
-
* URL where the agreement can be found.
|
|
17982
|
-
*
|
|
17983
|
-
*
|
|
17984
|
-
*
|
|
17985
|
-
* @remarks
|
|
17986
|
-
* This key constant provides type-safe access to the `url` property of UserAgreementAcceptance objects.
|
|
17987
|
-
* Use this constant when you need to access properties dynamically or ensure type safety.
|
|
17988
|
-
*
|
|
17989
|
-
* @example
|
|
17990
|
-
* ```typescript
|
|
17991
|
-
* // Direct property access
|
|
17992
|
-
* const value = useragreementacceptance[KEY_USER_AGREEMENT_ACCEPTANCE_URL];
|
|
17993
|
-
*
|
|
17994
|
-
* // Dynamic property access
|
|
17995
|
-
* const propertyName = KEY_USER_AGREEMENT_ACCEPTANCE_URL;
|
|
17996
|
-
* const value = useragreementacceptance[propertyName];
|
|
17997
|
-
* ```
|
|
17998
|
-
*
|
|
17999
|
-
* @see {@link UserAgreementAcceptance} - The TypeScript type definition
|
|
18000
|
-
* @see {@link KEYS_USER_AGREEMENT_ACCEPTANCE} - Array of all keys for this type
|
|
18001
|
-
*/
|
|
18002
|
-
export const KEY_USER_AGREEMENT_ACCEPTANCE_URL = 'url' as keyof UserAgreementAcceptance;
|
|
18003
|
-
/**
|
|
18004
|
-
* Version
|
|
18005
|
-
*
|
|
18006
|
-
* Version of the agreement being accepted.
|
|
18007
|
-
*
|
|
18008
|
-
*
|
|
18009
|
-
*
|
|
18010
|
-
* @remarks
|
|
18011
|
-
* This key constant provides type-safe access to the `version` property of UserAgreementAcceptance objects.
|
|
18012
|
-
* Use this constant when you need to access properties dynamically or ensure type safety.
|
|
18013
|
-
*
|
|
18014
|
-
* @example
|
|
18015
|
-
* ```typescript
|
|
18016
|
-
* // Direct property access
|
|
18017
|
-
* const value = useragreementacceptance[KEY_USER_AGREEMENT_ACCEPTANCE_VERSION];
|
|
18018
|
-
*
|
|
18019
|
-
* // Dynamic property access
|
|
18020
|
-
* const propertyName = KEY_USER_AGREEMENT_ACCEPTANCE_VERSION;
|
|
18021
|
-
* const value = useragreementacceptance[propertyName];
|
|
18022
|
-
* ```
|
|
18023
|
-
*
|
|
18024
|
-
* @see {@link UserAgreementAcceptance} - The TypeScript type definition
|
|
18025
|
-
* @see {@link KEYS_USER_AGREEMENT_ACCEPTANCE} - Array of all keys for this type
|
|
18026
|
-
*/
|
|
18027
|
-
export const KEY_USER_AGREEMENT_ACCEPTANCE_VERSION = 'version' as keyof UserAgreementAcceptance;
|
|
18028
|
-
|
|
18029
|
-
/**
|
|
18030
|
-
* Array of all UserAgreementAcceptance property keys
|
|
18031
|
-
*
|
|
18032
|
-
* @remarks
|
|
18033
|
-
* This constant provides a readonly array containing all valid property keys for UserAgreementAcceptance objects.
|
|
18034
|
-
* Useful for iteration, validation, and generating dynamic UI components.
|
|
18035
|
-
*
|
|
18036
|
-
* @example
|
|
18037
|
-
* ```typescript
|
|
18038
|
-
* // Iterating through all keys
|
|
18039
|
-
* for (const key of KEYS_USER_AGREEMENT_ACCEPTANCE) {
|
|
18040
|
-
* console.log(`Property: ${key}, Value: ${useragreementacceptance[key]}`);
|
|
18041
|
-
* }
|
|
18042
|
-
*
|
|
18043
|
-
* // Validation
|
|
18044
|
-
* const isValidKey = KEYS_USER_AGREEMENT_ACCEPTANCE.includes(someKey);
|
|
18045
|
-
* ```
|
|
18046
|
-
*
|
|
18047
|
-
* @see {@link UserAgreementAcceptance} - The TypeScript type definition
|
|
18048
|
-
*/
|
|
18049
|
-
export const KEYS_USER_AGREEMENT_ACCEPTANCE = [
|
|
18050
|
-
KEY_USER_AGREEMENT_ACCEPTANCE_ACCEPTED,
|
|
18051
|
-
KEY_USER_AGREEMENT_ACCEPTANCE_TYPE,
|
|
18052
|
-
KEY_USER_AGREEMENT_ACCEPTANCE_URL,
|
|
18053
|
-
KEY_USER_AGREEMENT_ACCEPTANCE_VERSION,
|
|
18054
|
-
] as const satisfies (keyof UserAgreementAcceptance)[];
|
|
18055
|
-
|
|
18056
17022
|
/**
|
|
18057
17023
|
* Key
|
|
18058
17024
|
*
|