@appconda/nextjs 1.0.16 → 1.0.18

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (119) hide show
  1. package/package.json +1 -1
  2. package/types/Cache/Adapter.d.ts +10 -0
  3. package/types/Cache/Adapters/Filesystem.d.ts +16 -0
  4. package/types/Cache/Adapters/Memory.d.ts +18 -0
  5. package/types/Cache/Adapters/None.d.ts +12 -0
  6. package/types/Cache/Adapters/Redis.d.ts +14 -0
  7. package/types/Cache/Adapters/Sharding.d.ts +17 -0
  8. package/types/Cache/Cache.d.ts +16 -0
  9. package/types/Cache/index.d.ts +5 -0
  10. package/types/Cache/test.d.ts +0 -0
  11. package/types/Services.d.ts +6 -0
  12. package/types/actions/actionClient.d.ts +4 -0
  13. package/types/actions/index.d.ts +1 -0
  14. package/types/actions/nodes.d.ts +4 -0
  15. package/types/client.d.ts +141 -0
  16. package/types/decorators/Cache.d.ts +1 -0
  17. package/types/decorators/CacheKey.d.ts +1 -0
  18. package/types/decorators/Invalidate.d.ts +1 -0
  19. package/types/enums/api-service.d.ts +13 -0
  20. package/types/enums/api.d.ts +5 -0
  21. package/types/enums/auth-method.d.ts +9 -0
  22. package/types/enums/authentication-factor.d.ts +6 -0
  23. package/types/enums/authenticator-type.d.ts +3 -0
  24. package/types/enums/browser.d.ts +16 -0
  25. package/types/enums/compression.d.ts +5 -0
  26. package/types/enums/credit-card.d.ts +18 -0
  27. package/types/enums/database-usage-range.d.ts +5 -0
  28. package/types/enums/email-template-locale.d.ts +133 -0
  29. package/types/enums/email-template-type.d.ts +9 -0
  30. package/types/enums/entities/EntityLimitType.d.ts +4 -0
  31. package/types/enums/entities/PropertyAttributeName.d.ts +27 -0
  32. package/types/enums/entities/PropertyCondition.d.ts +7 -0
  33. package/types/enums/entities/PropertyType.d.ts +12 -0
  34. package/types/enums/entities/PropertyValueType.d.ts +6 -0
  35. package/types/enums/entities/RowAccess.d.ts +2 -0
  36. package/types/enums/entities/ViewFilterCondition.d.ts +12 -0
  37. package/types/enums/execution-method.d.ts +8 -0
  38. package/types/enums/flag.d.ts +197 -0
  39. package/types/enums/function-usage-range.d.ts +5 -0
  40. package/types/enums/image-format.d.ts +7 -0
  41. package/types/enums/image-gravity.d.ts +11 -0
  42. package/types/enums/index-type.d.ts +5 -0
  43. package/types/enums/messaging-provider-type.d.ts +5 -0
  44. package/types/enums/name.d.ts +14 -0
  45. package/types/enums/o-auth-provider copy.d.ts +41 -0
  46. package/types/enums/o-auth-provider.d.ts +41 -0
  47. package/types/enums/password-hash.d.ts +13 -0
  48. package/types/enums/platform-type.d.ts +17 -0
  49. package/types/enums/project-usage-range.d.ts +4 -0
  50. package/types/enums/region.d.ts +4 -0
  51. package/types/enums/relation-mutate.d.ts +5 -0
  52. package/types/enums/relationship-type.d.ts +6 -0
  53. package/types/enums/resource-type.d.ts +4 -0
  54. package/types/enums/runtime.d.ts +48 -0
  55. package/types/enums/s-m-t-p-secure.d.ts +3 -0
  56. package/types/enums/shared/ApplicationLayout.d.ts +4 -0
  57. package/types/enums/shared/Colors.d.ts +24 -0
  58. package/types/enums/shared/InputType.d.ts +6 -0
  59. package/types/enums/shared/Periodicity.d.ts +7 -0
  60. package/types/enums/shared/SvgIcon.d.ts +37 -0
  61. package/types/enums/shared/Theme.d.ts +4 -0
  62. package/types/enums/sms-template-locale.d.ts +133 -0
  63. package/types/enums/sms-template-type.d.ts +6 -0
  64. package/types/enums/smtp-encryption.d.ts +5 -0
  65. package/types/enums/storage-usage-range.d.ts +5 -0
  66. package/types/enums/subscriptions/PricingModel.d.ts +11 -0
  67. package/types/enums/subscriptions/SubscriptionBillingPeriod.d.ts +10 -0
  68. package/types/enums/subscriptions/SubscriptionFeatureLimitType.d.ts +10 -0
  69. package/types/enums/subscriptions/SubscriptionPriceType.d.ts +7 -0
  70. package/types/enums/tenants/LinkedAccountStatus.d.ts +5 -0
  71. package/types/enums/tenants/TenantUserJoined.d.ts +6 -0
  72. package/types/enums/tenants/TenantUserStatus.d.ts +6 -0
  73. package/types/enums/tenants/TenantUserType.d.ts +5 -0
  74. package/types/enums/user-usage-range.d.ts +5 -0
  75. package/types/getAppcondaClient.d.ts +2 -0
  76. package/types/getSDKForCurrentUser.d.ts +33 -0
  77. package/types/id.d.ts +20 -0
  78. package/types/index.d.ts +39 -0
  79. package/types/inputFile.d.ts +6 -0
  80. package/types/lib/Registry/Registry.d.ts +38 -0
  81. package/types/lib/Registry/index.d.ts +1 -0
  82. package/types/models.d.ts +3272 -0
  83. package/types/permission.d.ts +43 -0
  84. package/types/query.d.ts +194 -0
  85. package/types/role.d.ts +70 -0
  86. package/types/service-client.d.ts +7 -0
  87. package/types/service.d.ts +11 -0
  88. package/types/services/account.d.ts +530 -0
  89. package/types/services/acl.d.ts +28 -0
  90. package/types/services/applets.d.ts +9 -0
  91. package/types/services/assistant.d.ts +14 -0
  92. package/types/services/avatars.d.ts +115 -0
  93. package/types/services/community.d.ts +19 -0
  94. package/types/services/configuration.d.ts +5 -0
  95. package/types/services/console.d.ts +15 -0
  96. package/types/services/databases.d.ts +613 -0
  97. package/types/services/functions.d.ts +319 -0
  98. package/types/services/graphql.d.ts +25 -0
  99. package/types/services/health.d.ts +231 -0
  100. package/types/services/locale.d.ts +80 -0
  101. package/types/services/messaging.d.ts +685 -0
  102. package/types/services/migrations.d.ts +185 -0
  103. package/types/services/node.d.ts +5 -0
  104. package/types/services/permissions.d.ts +20 -0
  105. package/types/services/pricing.d.ts +15 -0
  106. package/types/services/project.d.ts +70 -0
  107. package/types/services/projects.d.ts +542 -0
  108. package/types/services/proxy.d.ts +59 -0
  109. package/types/services/roles.d.ts +19 -0
  110. package/types/services/schema.d.ts +17 -0
  111. package/types/services/storage.d.ts +189 -0
  112. package/types/services/subscription-product.d.ts +77 -0
  113. package/types/services/subscription.d.ts +15 -0
  114. package/types/services/teams.d.ts +167 -0
  115. package/types/services/tenant-subscription.d.ts +12 -0
  116. package/types/services/tenant.d.ts +32 -0
  117. package/types/services/users.d.ts +499 -0
  118. package/types/services/vcs.d.ts +108 -0
  119. package/types/services/waitlist.d.ts +5 -0
@@ -0,0 +1,197 @@
1
+ export declare enum Flag {
2
+ Afghanistan = "af",
3
+ Angola = "ao",
4
+ Albania = "al",
5
+ Andorra = "ad",
6
+ UnitedArabEmirates = "ae",
7
+ Argentina = "ar",
8
+ Armenia = "am",
9
+ AntiguaAndBarbuda = "ag",
10
+ Australia = "au",
11
+ Austria = "at",
12
+ Azerbaijan = "az",
13
+ Burundi = "bi",
14
+ Belgium = "be",
15
+ Benin = "bj",
16
+ BurkinaFaso = "bf",
17
+ Bangladesh = "bd",
18
+ Bulgaria = "bg",
19
+ Bahrain = "bh",
20
+ Bahamas = "bs",
21
+ BosniaAndHerzegovina = "ba",
22
+ Belarus = "by",
23
+ Belize = "bz",
24
+ Bolivia = "bo",
25
+ Brazil = "br",
26
+ Barbados = "bb",
27
+ BruneiDarussalam = "bn",
28
+ Bhutan = "bt",
29
+ Botswana = "bw",
30
+ CentralAfricanRepublic = "cf",
31
+ Canada = "ca",
32
+ Switzerland = "ch",
33
+ Chile = "cl",
34
+ China = "cn",
35
+ CoteDIvoire = "ci",
36
+ Cameroon = "cm",
37
+ DemocraticRepublicOfTheCongo = "cd",
38
+ RepublicOfTheCongo = "cg",
39
+ Colombia = "co",
40
+ Comoros = "km",
41
+ CapeVerde = "cv",
42
+ CostaRica = "cr",
43
+ Cuba = "cu",
44
+ Cyprus = "cy",
45
+ CzechRepublic = "cz",
46
+ Germany = "de",
47
+ Djibouti = "dj",
48
+ Dominica = "dm",
49
+ Denmark = "dk",
50
+ DominicanRepublic = "do",
51
+ Algeria = "dz",
52
+ Ecuador = "ec",
53
+ Egypt = "eg",
54
+ Eritrea = "er",
55
+ Spain = "es",
56
+ Estonia = "ee",
57
+ Ethiopia = "et",
58
+ Finland = "fi",
59
+ Fiji = "fj",
60
+ France = "fr",
61
+ MicronesiaFederatedStatesOf = "fm",
62
+ Gabon = "ga",
63
+ UnitedKingdom = "gb",
64
+ Georgia = "ge",
65
+ Ghana = "gh",
66
+ Guinea = "gn",
67
+ Gambia = "gm",
68
+ GuineaBissau = "gw",
69
+ EquatorialGuinea = "gq",
70
+ Greece = "gr",
71
+ Grenada = "gd",
72
+ Guatemala = "gt",
73
+ Guyana = "gy",
74
+ Honduras = "hn",
75
+ Croatia = "hr",
76
+ Haiti = "ht",
77
+ Hungary = "hu",
78
+ Indonesia = "id",
79
+ India = "in",
80
+ Ireland = "ie",
81
+ IranIslamicRepublicOf = "ir",
82
+ Iraq = "iq",
83
+ Iceland = "is",
84
+ Israel = "il",
85
+ Italy = "it",
86
+ Jamaica = "jm",
87
+ Jordan = "jo",
88
+ Japan = "jp",
89
+ Kazakhstan = "kz",
90
+ Kenya = "ke",
91
+ Kyrgyzstan = "kg",
92
+ Cambodia = "kh",
93
+ Kiribati = "ki",
94
+ SaintKittsAndNevis = "kn",
95
+ SouthKorea = "kr",
96
+ Kuwait = "kw",
97
+ LaoPeopleSDemocraticRepublic = "la",
98
+ Lebanon = "lb",
99
+ Liberia = "lr",
100
+ Libya = "ly",
101
+ SaintLucia = "lc",
102
+ Liechtenstein = "li",
103
+ SriLanka = "lk",
104
+ Lesotho = "ls",
105
+ Lithuania = "lt",
106
+ Luxembourg = "lu",
107
+ Latvia = "lv",
108
+ Morocco = "ma",
109
+ Monaco = "mc",
110
+ Moldova = "md",
111
+ Madagascar = "mg",
112
+ Maldives = "mv",
113
+ Mexico = "mx",
114
+ MarshallIslands = "mh",
115
+ NorthMacedonia = "mk",
116
+ Mali = "ml",
117
+ Malta = "mt",
118
+ Myanmar = "mm",
119
+ Montenegro = "me",
120
+ Mongolia = "mn",
121
+ Mozambique = "mz",
122
+ Mauritania = "mr",
123
+ Mauritius = "mu",
124
+ Malawi = "mw",
125
+ Malaysia = "my",
126
+ Namibia = "na",
127
+ Niger = "ne",
128
+ Nigeria = "ng",
129
+ Nicaragua = "ni",
130
+ Netherlands = "nl",
131
+ Norway = "no",
132
+ Nepal = "np",
133
+ Nauru = "nr",
134
+ NewZealand = "nz",
135
+ Oman = "om",
136
+ Pakistan = "pk",
137
+ Panama = "pa",
138
+ Peru = "pe",
139
+ Philippines = "ph",
140
+ Palau = "pw",
141
+ PapuaNewGuinea = "pg",
142
+ Poland = "pl",
143
+ FrenchPolynesia = "pf",
144
+ NorthKorea = "kp",
145
+ Portugal = "pt",
146
+ Paraguay = "py",
147
+ Qatar = "qa",
148
+ Romania = "ro",
149
+ Russia = "ru",
150
+ Rwanda = "rw",
151
+ SaudiArabia = "sa",
152
+ Sudan = "sd",
153
+ Senegal = "sn",
154
+ Singapore = "sg",
155
+ SolomonIslands = "sb",
156
+ SierraLeone = "sl",
157
+ ElSalvador = "sv",
158
+ SanMarino = "sm",
159
+ Somalia = "so",
160
+ Serbia = "rs",
161
+ SouthSudan = "ss",
162
+ SaoTomeAndPrincipe = "st",
163
+ Suriname = "sr",
164
+ Slovakia = "sk",
165
+ Slovenia = "si",
166
+ Sweden = "se",
167
+ Eswatini = "sz",
168
+ Seychelles = "sc",
169
+ Syria = "sy",
170
+ Chad = "td",
171
+ Togo = "tg",
172
+ Thailand = "th",
173
+ Tajikistan = "tj",
174
+ Turkmenistan = "tm",
175
+ TimorLeste = "tl",
176
+ Tonga = "to",
177
+ TrinidadAndTobago = "tt",
178
+ Tunisia = "tn",
179
+ Turkey = "tr",
180
+ Tuvalu = "tv",
181
+ Tanzania = "tz",
182
+ Uganda = "ug",
183
+ Ukraine = "ua",
184
+ Uruguay = "uy",
185
+ UnitedStates = "us",
186
+ Uzbekistan = "uz",
187
+ VaticanCity = "va",
188
+ SaintVincentAndTheGrenadines = "vc",
189
+ Venezuela = "ve",
190
+ Vietnam = "vn",
191
+ Vanuatu = "vu",
192
+ Samoa = "ws",
193
+ Yemen = "ye",
194
+ SouthAfrica = "za",
195
+ Zambia = "zm",
196
+ Zimbabwe = "zw"
197
+ }
@@ -0,0 +1,5 @@
1
+ export declare enum FunctionUsageRange {
2
+ TwentyFourHours = "24h",
3
+ ThirtyDays = "30d",
4
+ NinetyDays = "90d"
5
+ }
@@ -0,0 +1,7 @@
1
+ export declare enum ImageFormat {
2
+ Jpg = "jpg",
3
+ Jpeg = "jpeg",
4
+ Gif = "gif",
5
+ Png = "png",
6
+ Webp = "webp"
7
+ }
@@ -0,0 +1,11 @@
1
+ export declare enum ImageGravity {
2
+ Center = "center",
3
+ Topleft = "top-left",
4
+ Top = "top",
5
+ Topright = "top-right",
6
+ Left = "left",
7
+ Right = "right",
8
+ Bottomleft = "bottom-left",
9
+ Bottom = "bottom",
10
+ Bottomright = "bottom-right"
11
+ }
@@ -0,0 +1,5 @@
1
+ export declare enum IndexType {
2
+ Key = "key",
3
+ Fulltext = "fulltext",
4
+ Unique = "unique"
5
+ }
@@ -0,0 +1,5 @@
1
+ export declare enum MessagingProviderType {
2
+ Email = "email",
3
+ Sms = "sms",
4
+ Push = "push"
5
+ }
@@ -0,0 +1,14 @@
1
+ export declare enum Name {
2
+ V1database = "v1-database",
3
+ V1deletes = "v1-deletes",
4
+ V1audits = "v1-audits",
5
+ V1mails = "v1-mails",
6
+ V1functions = "v1-functions",
7
+ V1usage = "v1-usage",
8
+ V1usagedump = "v1-usage-dump",
9
+ V1webhooks = "v1-webhooks",
10
+ V1certificates = "v1-certificates",
11
+ V1builds = "v1-builds",
12
+ V1messaging = "v1-messaging",
13
+ V1migrations = "v1-migrations"
14
+ }
@@ -0,0 +1,41 @@
1
+ export declare enum OAuthProvider {
2
+ Amazon = "amazon",
3
+ Apple = "apple",
4
+ Auth0 = "auth0",
5
+ Authentik = "authentik",
6
+ Autodesk = "autodesk",
7
+ Bitbucket = "bitbucket",
8
+ Bitly = "bitly",
9
+ Box = "box",
10
+ Dailymotion = "dailymotion",
11
+ Discord = "discord",
12
+ Disqus = "disqus",
13
+ Dropbox = "dropbox",
14
+ Etsy = "etsy",
15
+ Facebook = "facebook",
16
+ Github = "github",
17
+ Gitlab = "gitlab",
18
+ Google = "google",
19
+ Linkedin = "linkedin",
20
+ Microsoft = "microsoft",
21
+ Notion = "notion",
22
+ Oidc = "oidc",
23
+ Okta = "okta",
24
+ Paypal = "paypal",
25
+ PaypalSandbox = "paypalSandbox",
26
+ Podio = "podio",
27
+ Salesforce = "salesforce",
28
+ Slack = "slack",
29
+ Spotify = "spotify",
30
+ Stripe = "stripe",
31
+ Tradeshift = "tradeshift",
32
+ TradeshiftBox = "tradeshiftBox",
33
+ Twitch = "twitch",
34
+ Wordpress = "wordpress",
35
+ Yahoo = "yahoo",
36
+ Yammer = "yammer",
37
+ Yandex = "yandex",
38
+ Zoho = "zoho",
39
+ Zoom = "zoom",
40
+ Mock = "mock"
41
+ }
@@ -0,0 +1,41 @@
1
+ export declare enum OAuthProvider {
2
+ Amazon = "amazon",
3
+ Apple = "apple",
4
+ Auth0 = "auth0",
5
+ Authentik = "authentik",
6
+ Autodesk = "autodesk",
7
+ Bitbucket = "bitbucket",
8
+ Bitly = "bitly",
9
+ Box = "box",
10
+ Dailymotion = "dailymotion",
11
+ Discord = "discord",
12
+ Disqus = "disqus",
13
+ Dropbox = "dropbox",
14
+ Etsy = "etsy",
15
+ Facebook = "facebook",
16
+ Github = "github",
17
+ Gitlab = "gitlab",
18
+ Google = "google",
19
+ Linkedin = "linkedin",
20
+ Microsoft = "microsoft",
21
+ Notion = "notion",
22
+ Oidc = "oidc",
23
+ Okta = "okta",
24
+ Paypal = "paypal",
25
+ PaypalSandbox = "paypalSandbox",
26
+ Podio = "podio",
27
+ Salesforce = "salesforce",
28
+ Slack = "slack",
29
+ Spotify = "spotify",
30
+ Stripe = "stripe",
31
+ Tradeshift = "tradeshift",
32
+ TradeshiftBox = "tradeshiftBox",
33
+ Twitch = "twitch",
34
+ Wordpress = "wordpress",
35
+ Yahoo = "yahoo",
36
+ Yammer = "yammer",
37
+ Yandex = "yandex",
38
+ Zoho = "zoho",
39
+ Zoom = "zoom",
40
+ Mock = "mock"
41
+ }
@@ -0,0 +1,13 @@
1
+ export declare enum PasswordHash {
2
+ Sha1 = "sha1",
3
+ Sha224 = "sha224",
4
+ Sha256 = "sha256",
5
+ Sha384 = "sha384",
6
+ Sha512224 = "sha512/224",
7
+ Sha512256 = "sha512/256",
8
+ Sha512 = "sha512",
9
+ Sha3224 = "sha3-224",
10
+ Sha3256 = "sha3-256",
11
+ Sha3384 = "sha3-384",
12
+ Sha3512 = "sha3-512"
13
+ }
@@ -0,0 +1,17 @@
1
+ export declare enum PlatformType {
2
+ Web = "web",
3
+ Flutterweb = "flutter-web",
4
+ Flutterios = "flutter-ios",
5
+ Flutterandroid = "flutter-android",
6
+ Flutterlinux = "flutter-linux",
7
+ Fluttermacos = "flutter-macos",
8
+ Flutterwindows = "flutter-windows",
9
+ Appleios = "apple-ios",
10
+ Applemacos = "apple-macos",
11
+ Applewatchos = "apple-watchos",
12
+ Appletvos = "apple-tvos",
13
+ Android = "android",
14
+ Unity = "unity",
15
+ Reactnativeios = "react-native-ios",
16
+ Reactnativeandroid = "react-native-android"
17
+ }
@@ -0,0 +1,4 @@
1
+ export declare enum ProjectUsageRange {
2
+ OneHour = "1h",
3
+ OneDay = "1d"
4
+ }
@@ -0,0 +1,4 @@
1
+ export declare enum Region {
2
+ Default = "default",
3
+ Fra = "fra"
4
+ }
@@ -0,0 +1,5 @@
1
+ export declare enum RelationMutate {
2
+ Cascade = "cascade",
3
+ Restrict = "restrict",
4
+ SetNull = "setNull"
5
+ }
@@ -0,0 +1,6 @@
1
+ export declare enum RelationshipType {
2
+ OneToOne = "oneToOne",
3
+ ManyToOne = "manyToOne",
4
+ ManyToMany = "manyToMany",
5
+ OneToMany = "oneToMany"
6
+ }
@@ -0,0 +1,4 @@
1
+ export declare enum ResourceType {
2
+ Api = "api",
3
+ Function = "function"
4
+ }
@@ -0,0 +1,48 @@
1
+ export declare enum Runtime {
2
+ Node145 = "node-14.5",
3
+ Node160 = "node-16.0",
4
+ Node180 = "node-18.0",
5
+ Node190 = "node-19.0",
6
+ Node200 = "node-20.0",
7
+ Node210 = "node-21.0",
8
+ Php80 = "php-8.0",
9
+ Php81 = "php-8.1",
10
+ Php82 = "php-8.2",
11
+ Php83 = "php-8.3",
12
+ Ruby30 = "ruby-3.0",
13
+ Ruby31 = "ruby-3.1",
14
+ Ruby32 = "ruby-3.2",
15
+ Ruby33 = "ruby-3.3",
16
+ Python38 = "python-3.8",
17
+ Python39 = "python-3.9",
18
+ Python310 = "python-3.10",
19
+ Python311 = "python-3.11",
20
+ Python312 = "python-3.12",
21
+ Pythonml311 = "python-ml-3.11",
22
+ Deno140 = "deno-1.40",
23
+ Dart215 = "dart-2.15",
24
+ Dart216 = "dart-2.16",
25
+ Dart217 = "dart-2.17",
26
+ Dart218 = "dart-2.18",
27
+ Dart30 = "dart-3.0",
28
+ Dart31 = "dart-3.1",
29
+ Dart33 = "dart-3.3",
30
+ Dotnet31 = "dotnet-3.1",
31
+ Dotnet60 = "dotnet-6.0",
32
+ Dotnet70 = "dotnet-7.0",
33
+ Java80 = "java-8.0",
34
+ Java110 = "java-11.0",
35
+ Java170 = "java-17.0",
36
+ Java180 = "java-18.0",
37
+ Java210 = "java-21.0",
38
+ Swift55 = "swift-5.5",
39
+ Swift58 = "swift-5.8",
40
+ Swift59 = "swift-5.9",
41
+ Kotlin16 = "kotlin-1.6",
42
+ Kotlin18 = "kotlin-1.8",
43
+ Kotlin19 = "kotlin-1.9",
44
+ Cpp17 = "cpp-17",
45
+ Cpp20 = "cpp-20",
46
+ Bun10 = "bun-1.0",
47
+ Go123 = "go-1.23"
48
+ }
@@ -0,0 +1,3 @@
1
+ export declare enum SMTPSecure {
2
+ Tls = "tls"
3
+ }
@@ -0,0 +1,4 @@
1
+ export declare enum ApplicationLayout {
2
+ SIDEBAR = 0,
3
+ STACKED = 1
4
+ }
@@ -0,0 +1,24 @@
1
+ export declare enum Colors {
2
+ UNDEFINED = 0,
3
+ SLATE = 1,
4
+ GRAY = 2,
5
+ NEUTRAL = 3,
6
+ STONE = 4,
7
+ RED = 5,
8
+ ORANGE = 6,
9
+ AMBER = 7,
10
+ YELLOW = 8,
11
+ LIME = 9,
12
+ GREEN = 10,
13
+ EMERALD = 11,
14
+ TEAL = 12,
15
+ CYAN = 13,
16
+ SKY = 14,
17
+ BLUE = 15,
18
+ INDIGO = 16,
19
+ VIOLET = 17,
20
+ PURPLE = 18,
21
+ FUCHSIA = 19,
22
+ PINK = 20,
23
+ ROSE = 21
24
+ }
@@ -0,0 +1,6 @@
1
+ export declare enum InputType {
2
+ TEXT = 0,
3
+ NUMBER = 1,
4
+ SELECT = 2,
5
+ DECIMAL = 3
6
+ }
@@ -0,0 +1,7 @@
1
+ export declare enum Periodicity {
2
+ ONCE = 0,
3
+ MONTHLY = 1,
4
+ BIMONTHLY = 2,
5
+ QUARTERLY = 3,
6
+ YEARLY = 4
7
+ }
@@ -0,0 +1,37 @@
1
+ export declare enum SvgIcon {
2
+ ADMIN = 0,
3
+ TENANTS = 1,
4
+ USERS = 2,
5
+ ROLES = 3,
6
+ PRICING = 4,
7
+ EMAILS = 5,
8
+ NAVIGATION = 6,
9
+ COMPONENTS = 7,
10
+ MEMBERS = 8,
11
+ PROFILE = 9,
12
+ APP = 10,
13
+ DASHBOARD = 11,
14
+ SETTINGS = 12,
15
+ SETUP = 13,
16
+ LOGS = 14,
17
+ EVENTS = 15,
18
+ BLOG = 16,
19
+ ENTITIES = 17,
20
+ KEYS = 18,
21
+ DOCS = 19,
22
+ LINKS = 20,
23
+ PROVIDERS = 21,
24
+ CLIENTS = 22,
25
+ CONTRACTS = 23,
26
+ EMPLOYEES = 24,
27
+ JOKES = 25,
28
+ ANALYTICS = 26,
29
+ AFFILIATES_AND_REFERRALS = 27,
30
+ HELP_DESK = 28,
31
+ ONBOARDING = 29,
32
+ PAGES = 30,
33
+ FEATURE_FLAGS = 31,
34
+ PROMPT_BUILDER = 32,
35
+ KNOWLEDGE_BASE = 33,
36
+ WORKFLOWS = 34
37
+ }
@@ -0,0 +1,4 @@
1
+ export declare enum Theme {
2
+ LIGHT = 0,
3
+ DARK = 1
4
+ }
@@ -0,0 +1,133 @@
1
+ export declare enum SmsTemplateLocale {
2
+ Af = "af",
3
+ Arae = "ar-ae",
4
+ Arbh = "ar-bh",
5
+ Ardz = "ar-dz",
6
+ Areg = "ar-eg",
7
+ Ariq = "ar-iq",
8
+ Arjo = "ar-jo",
9
+ Arkw = "ar-kw",
10
+ Arlb = "ar-lb",
11
+ Arly = "ar-ly",
12
+ Arma = "ar-ma",
13
+ Arom = "ar-om",
14
+ Arqa = "ar-qa",
15
+ Arsa = "ar-sa",
16
+ Arsy = "ar-sy",
17
+ Artn = "ar-tn",
18
+ Arye = "ar-ye",
19
+ As = "as",
20
+ Az = "az",
21
+ Be = "be",
22
+ Bg = "bg",
23
+ Bh = "bh",
24
+ Bn = "bn",
25
+ Bs = "bs",
26
+ Ca = "ca",
27
+ Cs = "cs",
28
+ Cy = "cy",
29
+ Da = "da",
30
+ De = "de",
31
+ Deat = "de-at",
32
+ Dech = "de-ch",
33
+ Deli = "de-li",
34
+ Delu = "de-lu",
35
+ El = "el",
36
+ En = "en",
37
+ Enau = "en-au",
38
+ Enbz = "en-bz",
39
+ Enca = "en-ca",
40
+ Engb = "en-gb",
41
+ Enie = "en-ie",
42
+ Enjm = "en-jm",
43
+ Ennz = "en-nz",
44
+ Entt = "en-tt",
45
+ Enus = "en-us",
46
+ Enza = "en-za",
47
+ Eo = "eo",
48
+ Es = "es",
49
+ Esar = "es-ar",
50
+ Esbo = "es-bo",
51
+ Escl = "es-cl",
52
+ Esco = "es-co",
53
+ Escr = "es-cr",
54
+ Esdo = "es-do",
55
+ Esec = "es-ec",
56
+ Esgt = "es-gt",
57
+ Eshn = "es-hn",
58
+ Esmx = "es-mx",
59
+ Esni = "es-ni",
60
+ Espa = "es-pa",
61
+ Espe = "es-pe",
62
+ Espr = "es-pr",
63
+ Espy = "es-py",
64
+ Essv = "es-sv",
65
+ Esuy = "es-uy",
66
+ Esve = "es-ve",
67
+ Et = "et",
68
+ Eu = "eu",
69
+ Fa = "fa",
70
+ Fi = "fi",
71
+ Fo = "fo",
72
+ Fr = "fr",
73
+ Frbe = "fr-be",
74
+ Frca = "fr-ca",
75
+ Frch = "fr-ch",
76
+ Frlu = "fr-lu",
77
+ Ga = "ga",
78
+ Gd = "gd",
79
+ He = "he",
80
+ Hi = "hi",
81
+ Hr = "hr",
82
+ Hu = "hu",
83
+ Id = "id",
84
+ Is = "is",
85
+ It = "it",
86
+ Itch = "it-ch",
87
+ Ja = "ja",
88
+ Ji = "ji",
89
+ Ko = "ko",
90
+ Ku = "ku",
91
+ Lt = "lt",
92
+ Lv = "lv",
93
+ Mk = "mk",
94
+ Ml = "ml",
95
+ Ms = "ms",
96
+ Mt = "mt",
97
+ Nb = "nb",
98
+ Ne = "ne",
99
+ Nl = "nl",
100
+ Nlbe = "nl-be",
101
+ Nn = "nn",
102
+ No = "no",
103
+ Pa = "pa",
104
+ Pl = "pl",
105
+ Pt = "pt",
106
+ Ptbr = "pt-br",
107
+ Rm = "rm",
108
+ Ro = "ro",
109
+ Romd = "ro-md",
110
+ Ru = "ru",
111
+ Rumd = "ru-md",
112
+ Sb = "sb",
113
+ Sk = "sk",
114
+ Sl = "sl",
115
+ Sq = "sq",
116
+ Sr = "sr",
117
+ Sv = "sv",
118
+ Svfi = "sv-fi",
119
+ Th = "th",
120
+ Tn = "tn",
121
+ Tr = "tr",
122
+ Ts = "ts",
123
+ Ua = "ua",
124
+ Ur = "ur",
125
+ Ve = "ve",
126
+ Vi = "vi",
127
+ Xh = "xh",
128
+ Zhcn = "zh-cn",
129
+ Zhhk = "zh-hk",
130
+ Zhsg = "zh-sg",
131
+ Zhtw = "zh-tw",
132
+ Zu = "zu"
133
+ }
@@ -0,0 +1,6 @@
1
+ export declare enum SmsTemplateType {
2
+ Verification = "verification",
3
+ Login = "login",
4
+ Invitation = "invitation",
5
+ Mfachallenge = "mfachallenge"
6
+ }