From 9d0b3153f2d6836d87a6bfc7856207df7a89538c Mon Sep 17 00:00:00 2001 From: Daniel DeGroff Date: Thu, 10 Jul 2025 15:12:11 -0600 Subject: [PATCH 1/3] id -> Id, and fix patchAPIKey.json --- src/main/api/deactivateUsers.json | 4 ++-- src/main/api/deactivateUsersByIds.json | 4 ++-- src/main/api/deleteUsers.json | 6 +++--- src/main/api/deleteUsersByQuery.json | 6 +++--- src/main/api/modifyAction.json | 2 +- src/main/api/patchAPIKey.json | 8 ++++---- src/main/api/removeUserFromFamily.json | 2 +- src/main/api/retrieveAPIKey.json | 4 ++-- src/main/api/retrieveApplication.json | 2 +- src/main/api/retrieveDailyActiveReport.json | 6 +++--- src/main/api/retrieveEmailTemplate.json | 2 +- src/main/api/retrieveLoginReport.json | 6 +++--- src/main/api/retrieveMessageTemplate.json | 2 +- src/main/api/retrieveMonthlyActiveReport.json | 6 +++--- src/main/api/retrieveRegistration.json | 2 +- src/main/api/retrieveRegistrationReport.json | 6 +++--- src/main/api/retrieveUserAction.json | 2 +- src/main/api/retrieveUserActionReason.json | 2 +- src/main/api/retrieveUserCode.json | 4 ++-- src/main/api/retrieveUserLoginReport.json | 8 ++++---- src/main/api/retrieveUserLoginReportByLoginId.json | 8 ++++---- src/main/api/retrieveWebhook.json | 4 ++-- src/main/api/searchEntitiesByIds.json | 2 +- src/main/api/searchUsers.json | 2 +- src/main/api/searchUsersByIds.json | 4 ++-- src/main/api/sendEmail.json | 2 +- src/main/api/updateAPIKey.json | 8 ++++---- src/main/api/validateDevice.json | 2 +- 28 files changed, 58 insertions(+), 58 deletions(-) diff --git a/src/main/api/deactivateUsers.json b/src/main/api/deactivateUsers.json index 9d0d48b..f4f0694 100644 --- a/src/main/api/deactivateUsers.json +++ b/src/main/api/deactivateUsers.json @@ -1,7 +1,7 @@ { "uri": "/api/user/bulk", "comments": [ - "Deactivates the users with the given ids." + "Deactivates the users with the given Ids." ], "deprecated": "This method has been renamed to {{renamedMethod}}, use that method instead.", "renamedMethod": "deactivateUsersByIds", @@ -34,4 +34,4 @@ "value": "false" } ] -} \ No newline at end of file +} diff --git a/src/main/api/deactivateUsersByIds.json b/src/main/api/deactivateUsersByIds.json index 481bb34..ede53ff 100644 --- a/src/main/api/deactivateUsersByIds.json +++ b/src/main/api/deactivateUsersByIds.json @@ -1,7 +1,7 @@ { "uri": "/api/user/bulk", "comments": [ - "Deactivates the users with the given ids." + "Deactivates the users with the given Ids." ], "method": "delete", "methodName": "deactivateUsersByIds", @@ -32,4 +32,4 @@ "value": "false" } ] -} \ No newline at end of file +} diff --git a/src/main/api/deleteUsers.json b/src/main/api/deleteUsers.json index cd6e6bb..2e5ec17 100644 --- a/src/main/api/deleteUsers.json +++ b/src/main/api/deleteUsers.json @@ -1,8 +1,8 @@ { "uri": "/api/user/bulk", "comments": [ - "Deletes the users with the given ids, or users matching the provided JSON query or queryString.", - "The order of preference is ids, query and then queryString, it is recommended to only provide one of the three for the request.", + "Deletes the users with the given Ids, or users matching the provided JSON query or queryString.", + "The order of preference is Ids, query and then queryString, it is recommended to only provide one of the three for the request.", "", "This method can be used to deactivate or permanently delete (hard-delete) users based upon the hardDelete boolean in the request body.", "Using the dryRun parameter you may also request the result of the action without actually deleting or deactivating any users." @@ -23,4 +23,4 @@ "javaType": "UserDeleteRequest" } ] -} \ No newline at end of file +} diff --git a/src/main/api/deleteUsersByQuery.json b/src/main/api/deleteUsersByQuery.json index 99ba253..5ea1564 100644 --- a/src/main/api/deleteUsersByQuery.json +++ b/src/main/api/deleteUsersByQuery.json @@ -1,8 +1,8 @@ { "uri": "/api/user/bulk", "comments": [ - "Deletes the users with the given ids, or users matching the provided JSON query or queryString.", - "The order of preference is ids, query and then queryString, it is recommended to only provide one of the three for the request.", + "Deletes the users with the given Ids, or users matching the provided JSON query or queryString.", + "The order of preference is Ids, query and then queryString, it is recommended to only provide one of the three for the request.", "", "This method can be used to deactivate or permanently delete (hard-delete) users based upon the hardDelete boolean in the request body.", "Using the dryRun parameter you may also request the result of the action without actually deleting or deactivating any users." @@ -21,4 +21,4 @@ "javaType": "UserDeleteRequest" } ] -} \ No newline at end of file +} diff --git a/src/main/api/modifyAction.json b/src/main/api/modifyAction.json index f4ecd4a..0d835ac 100644 --- a/src/main/api/modifyAction.json +++ b/src/main/api/modifyAction.json @@ -12,7 +12,7 @@ { "name": "actionId", "comments": [ - "The Id of the action to modify. This is technically the user action log id." + "The Id of the action to modify. This is technically the user action log Id." ], "type": "urlSegment", "javaType": "UUID" diff --git a/src/main/api/patchAPIKey.json b/src/main/api/patchAPIKey.json index c14b160..9a3b795 100644 --- a/src/main/api/patchAPIKey.json +++ b/src/main/api/patchAPIKey.json @@ -1,9 +1,9 @@ { "uri": "/api/api-key", "comments": [ - "Updates an authentication API key by given id" + "Updates an API key with the given Id." ], - "method": "post", + "method": "patch", "methodName": "patchAPIKey", "successResponse": "APIKeyResponse", "errorResponse": "Errors", @@ -11,7 +11,7 @@ { "name": "keyId", "comments": [ - "The Id of the authentication key. If not provided a secure random api key will be generated." + "The Id of the API key. If not provided a secure random api key will be generated." ], "type": "urlSegment", "javaType": "UUID" @@ -19,7 +19,7 @@ { "name": "request", "comments": [ - "The request object that contains all the information needed to create the APIKey." + "The request object that contains all the information needed to create the API key." ], "type": "body", "javaType": "APIKeyRequest" diff --git a/src/main/api/removeUserFromFamily.json b/src/main/api/removeUserFromFamily.json index 945770f..1e43acd 100644 --- a/src/main/api/removeUserFromFamily.json +++ b/src/main/api/removeUserFromFamily.json @@ -1,7 +1,7 @@ { "uri": "/api/user/family", "comments": [ - "Removes a user from the family with the given id." + "Removes a user from the family with the given Id." ], "method": "delete", "methodName": "removeUserFromFamily", diff --git a/src/main/api/retrieveAPIKey.json b/src/main/api/retrieveAPIKey.json index a02db22..27cc636 100644 --- a/src/main/api/retrieveAPIKey.json +++ b/src/main/api/retrieveAPIKey.json @@ -1,7 +1,7 @@ { "uri": "/api/api-key", "comments": [ - "Retrieves an authentication API key for the given id" + "Retrieves an authentication API key for the given Id." ], "method": "get", "methodName": "retrieveAPIKey", @@ -17,4 +17,4 @@ "javaType": "UUID" } ] -} \ No newline at end of file +} diff --git a/src/main/api/retrieveApplication.json b/src/main/api/retrieveApplication.json index d30f502..2e6ff4e 100644 --- a/src/main/api/retrieveApplication.json +++ b/src/main/api/retrieveApplication.json @@ -11,7 +11,7 @@ { "name": "applicationId", "comments": [ - "(Optional) The application id." + "(Optional) The application Id." ], "type": "urlSegment", "javaType": "UUID" diff --git a/src/main/api/retrieveDailyActiveReport.json b/src/main/api/retrieveDailyActiveReport.json index 23d826d..5efb32a 100644 --- a/src/main/api/retrieveDailyActiveReport.json +++ b/src/main/api/retrieveDailyActiveReport.json @@ -1,7 +1,7 @@ { "uri": "/api/report/daily-active-user", "comments": [ - "Retrieves the daily active user report between the two instants. If you specify an application id, it will only", + "Retrieves the daily active user report between the two instants. If you specify an application Id, it will only", "return the daily active counts for that application." ], "method": "get", @@ -12,7 +12,7 @@ { "name": "applicationId", "comments": [ - "(Optional) The application id." + "(Optional) The application Id." ], "type": "urlParameter", "parameterName": "applicationId", @@ -37,4 +37,4 @@ "javaType": "long" } ] -} \ No newline at end of file +} diff --git a/src/main/api/retrieveEmailTemplate.json b/src/main/api/retrieveEmailTemplate.json index f7011a1..29c9a2e 100644 --- a/src/main/api/retrieveEmailTemplate.json +++ b/src/main/api/retrieveEmailTemplate.json @@ -1,7 +1,7 @@ { "uri": "/api/email/template", "comments": [ - "Retrieves the email template for the given Id. If you don't specify the id, this will return all the email templates." + "Retrieves the email template for the given Id. If you don't specify the Id, this will return all the email templates." ], "method": "get", "methodName": "retrieveEmailTemplate", diff --git a/src/main/api/retrieveLoginReport.json b/src/main/api/retrieveLoginReport.json index 1791de8..df05f87 100644 --- a/src/main/api/retrieveLoginReport.json +++ b/src/main/api/retrieveLoginReport.json @@ -1,7 +1,7 @@ { "uri": "/api/report/login", "comments": [ - "Retrieves the login report between the two instants. If you specify an application id, it will only return the", + "Retrieves the login report between the two instants. If you specify an application Id, it will only return the", "login counts for that application." ], "method": "get", @@ -12,7 +12,7 @@ { "name": "applicationId", "comments": [ - "(Optional) The application id." + "(Optional) The application Id." ], "type": "urlParameter", "parameterName": "applicationId", @@ -37,4 +37,4 @@ "javaType": "long" } ] -} \ No newline at end of file +} diff --git a/src/main/api/retrieveMessageTemplate.json b/src/main/api/retrieveMessageTemplate.json index d3bd9c0..4dbb6ac 100644 --- a/src/main/api/retrieveMessageTemplate.json +++ b/src/main/api/retrieveMessageTemplate.json @@ -1,7 +1,7 @@ { "uri": "/api/message/template", "comments": [ - "Retrieves the message template for the given Id. If you don't specify the id, this will return all the message templates." + "Retrieves the message template for the given Id. If you don't specify the Id, this will return all the message templates." ], "method": "get", "methodName": "retrieveMessageTemplate", diff --git a/src/main/api/retrieveMonthlyActiveReport.json b/src/main/api/retrieveMonthlyActiveReport.json index 13a3ea5..59c2de1 100644 --- a/src/main/api/retrieveMonthlyActiveReport.json +++ b/src/main/api/retrieveMonthlyActiveReport.json @@ -1,7 +1,7 @@ { "uri": "/api/report/monthly-active-user", "comments": [ - "Retrieves the monthly active user report between the two instants. If you specify an application id, it will only", + "Retrieves the monthly active user report between the two instants. If you specify an application Id, it will only", "return the monthly active counts for that application." ], "method": "get", @@ -12,7 +12,7 @@ { "name": "applicationId", "comments": [ - "(Optional) The application id." + "(Optional) The application Id." ], "type": "urlParameter", "parameterName": "applicationId", @@ -37,4 +37,4 @@ "javaType": "long" } ] -} \ No newline at end of file +} diff --git a/src/main/api/retrieveRegistration.json b/src/main/api/retrieveRegistration.json index 32b417d..730626f 100644 --- a/src/main/api/retrieveRegistration.json +++ b/src/main/api/retrieveRegistration.json @@ -1,7 +1,7 @@ { "uri": "/api/user/registration", "comments": [ - "Retrieves the user registration for the user with the given Id and the given application id." + "Retrieves the user registration for the user with the given Id and the given application Id." ], "method": "get", "methodName": "retrieveRegistration", diff --git a/src/main/api/retrieveRegistrationReport.json b/src/main/api/retrieveRegistrationReport.json index 119f85f..cd7718d 100644 --- a/src/main/api/retrieveRegistrationReport.json +++ b/src/main/api/retrieveRegistrationReport.json @@ -1,7 +1,7 @@ { "uri": "/api/report/registration", "comments": [ - "Retrieves the registration report between the two instants. If you specify an application id, it will only return", + "Retrieves the registration report between the two instants. If you specify an application Id, it will only return", "the registration counts for that application." ], "method": "get", @@ -12,7 +12,7 @@ { "name": "applicationId", "comments": [ - "(Optional) The application id." + "(Optional) The application Id." ], "type": "urlParameter", "parameterName": "applicationId", @@ -37,4 +37,4 @@ "javaType": "long" } ] -} \ No newline at end of file +} diff --git a/src/main/api/retrieveUserAction.json b/src/main/api/retrieveUserAction.json index 4db9b14..da88331 100644 --- a/src/main/api/retrieveUserAction.json +++ b/src/main/api/retrieveUserAction.json @@ -1,7 +1,7 @@ { "uri": "/api/user-action", "comments": [ - "Retrieves the user action for the given Id. If you pass in null for the id, this will return all the user", + "Retrieves the user action for the given Id. If you pass in null for the Id, this will return all the user", "actions." ], "method": "get", diff --git a/src/main/api/retrieveUserActionReason.json b/src/main/api/retrieveUserActionReason.json index 5a2d334..8f39925 100644 --- a/src/main/api/retrieveUserActionReason.json +++ b/src/main/api/retrieveUserActionReason.json @@ -1,7 +1,7 @@ { "uri": "/api/user-action-reason", "comments": [ - "Retrieves the user action reason for the given Id. If you pass in null for the id, this will return all the user", + "Retrieves the user action reason for the given Id. If you pass in null for the Id, this will return all the user", "action reasons." ], "method": "get", diff --git a/src/main/api/retrieveUserCode.json b/src/main/api/retrieveUserCode.json index 5a518d0..7fdf7e8 100644 --- a/src/main/api/retrieveUserCode.json +++ b/src/main/api/retrieveUserCode.json @@ -14,7 +14,7 @@ { "name": "client_id", "comments": [ - "The client id." + "The client Id." ], "type": "form", "parameterName": "client_id", @@ -23,7 +23,7 @@ { "name": "client_secret", "comments": [ - "The client id." + "The client Id." ], "type": "form", "parameterName": "client_secret", diff --git a/src/main/api/retrieveUserLoginReport.json b/src/main/api/retrieveUserLoginReport.json index 4b1bfd4..a4e9844 100644 --- a/src/main/api/retrieveUserLoginReport.json +++ b/src/main/api/retrieveUserLoginReport.json @@ -1,7 +1,7 @@ { "uri": "/api/report/login", "comments": [ - "Retrieves the login report between the two instants for a particular user by Id. If you specify an application id, it will only return the", + "Retrieves the login report between the two instants for a particular user by Id. If you specify an application Id, it will only return the", "login counts for that application." ], "method": "get", @@ -12,7 +12,7 @@ { "name": "applicationId", "comments": [ - "(Optional) The application id." + "(Optional) The application Id." ], "type": "urlParameter", "parameterName": "applicationId", @@ -21,7 +21,7 @@ { "name": "userId", "comments": [ - "The userId id." + "The userId Id." ], "type": "urlParameter", "parameterName": "userId", @@ -46,4 +46,4 @@ "javaType": "long" } ] -} \ No newline at end of file +} diff --git a/src/main/api/retrieveUserLoginReportByLoginId.json b/src/main/api/retrieveUserLoginReportByLoginId.json index 7adfc5a..8a4377e 100644 --- a/src/main/api/retrieveUserLoginReportByLoginId.json +++ b/src/main/api/retrieveUserLoginReportByLoginId.json @@ -1,7 +1,7 @@ { "uri": "/api/report/login", "comments": [ - "Retrieves the login report between the two instants for a particular user by login Id. If you specify an application id, it will only return the", + "Retrieves the login report between the two instants for a particular user by login Id. If you specify an application Id, it will only return the", "login counts for that application." ], "method": "get", @@ -12,7 +12,7 @@ { "name": "applicationId", "comments": [ - "(Optional) The application id." + "(Optional) The application Id." ], "type": "urlParameter", "parameterName": "applicationId", @@ -21,7 +21,7 @@ { "name": "loginId", "comments": [ - "The userId id." + "The userId Id." ], "type": "urlParameter", "parameterName": "loginId", @@ -46,4 +46,4 @@ "javaType": "long" } ] -} \ No newline at end of file +} diff --git a/src/main/api/retrieveWebhook.json b/src/main/api/retrieveWebhook.json index 359ba2b..265136b 100644 --- a/src/main/api/retrieveWebhook.json +++ b/src/main/api/retrieveWebhook.json @@ -1,7 +1,7 @@ { "uri": "/api/webhook", "comments": [ - "Retrieves the webhook for the given Id. If you pass in null for the id, this will return all the webhooks." + "Retrieves the webhook for the given Id. If you pass in null for the Id, this will return all the webhooks." ], "method": "get", "methodName": "retrieveWebhook", @@ -17,4 +17,4 @@ "javaType": "UUID" } ] -} \ No newline at end of file +} diff --git a/src/main/api/searchEntitiesByIds.json b/src/main/api/searchEntitiesByIds.json index 3ded4b6..428e124 100644 --- a/src/main/api/searchEntitiesByIds.json +++ b/src/main/api/searchEntitiesByIds.json @@ -1,7 +1,7 @@ { "uri": "/api/entity/search", "comments": [ - "Retrieves the entities for the given ids. If any Id is invalid, it is ignored." + "Retrieves the entities for the given Ids. If any Id is invalid, it is ignored." ], "method": "get", "methodName": "searchEntitiesByIds", diff --git a/src/main/api/searchUsers.json b/src/main/api/searchUsers.json index b4edb22..fe029f0 100644 --- a/src/main/api/searchUsers.json +++ b/src/main/api/searchUsers.json @@ -1,7 +1,7 @@ { "uri": "/api/user/search", "comments": [ - "Retrieves the users for the given ids. If any Id is invalid, it is ignored." + "Retrieves the users for the given Ids. If any Id is invalid, it is ignored." ], "deprecated": "This method has been renamed to {{renamedMethod}}, use that method instead.", "renamedMethod": "searchUsersByIds", diff --git a/src/main/api/searchUsersByIds.json b/src/main/api/searchUsersByIds.json index 99f899c..fd60478 100644 --- a/src/main/api/searchUsersByIds.json +++ b/src/main/api/searchUsersByIds.json @@ -1,7 +1,7 @@ { "uri": "/api/user/search", "comments": [ - "Retrieves the users for the given ids. If any Id is invalid, it is ignored." + "Retrieves the users for the given Ids. If any Id is invalid, it is ignored." ], "method": "get", "methodName": "searchUsersByIds", @@ -11,7 +11,7 @@ { "name": "ids", "comments": [ - "The user ids to search for." + "The user Ids to search for." ], "type": "urlParameter", "parameterName": "ids", diff --git a/src/main/api/sendEmail.json b/src/main/api/sendEmail.json index fc3a15a..9c8da1e 100644 --- a/src/main/api/sendEmail.json +++ b/src/main/api/sendEmail.json @@ -1,7 +1,7 @@ { "uri": "/api/email/send", "comments": [ - "Send an email using an email template id. You can optionally provide requestData to access key value", + "Send an email using an email template Id. You can optionally provide requestData to access key value", "pairs in the email template." ], "method": "post", diff --git a/src/main/api/updateAPIKey.json b/src/main/api/updateAPIKey.json index f283a85..bd87175 100644 --- a/src/main/api/updateAPIKey.json +++ b/src/main/api/updateAPIKey.json @@ -1,7 +1,7 @@ { "uri": "/api/api-key", "comments": [ - "Updates an API key by given id" + "Updates an API key with the given Id." ], "method": "put", "methodName": "updateAPIKey", @@ -9,7 +9,7 @@ "errorResponse": "Errors", "params": [ { - "name": "apiKeyId", + "name": "keyId", "comments": [ "The Id of the API key to update." ], @@ -19,10 +19,10 @@ { "name": "request", "comments": [ - "The request object that contains all the information used to create the API Key." + "The request that contains all the new API key information." ], "type": "body", "javaType": "APIKeyRequest" } ] -} \ No newline at end of file +} diff --git a/src/main/api/validateDevice.json b/src/main/api/validateDevice.json index 1f1b1c4..f47c7a6 100644 --- a/src/main/api/validateDevice.json +++ b/src/main/api/validateDevice.json @@ -22,7 +22,7 @@ { "name": "client_id", "comments": [ - "The client id." + "The client Id." ], "type": "urlParameter", "parameterName": "client_id", From 1127372d6b7974166281c42640e00bd6cbd0dbe3 Mon Sep 17 00:00:00 2001 From: Daniel DeGroff Date: Thu, 10 Jul 2025 15:26:16 -0600 Subject: [PATCH 2/3] sync up domainNG --- src/main/domainNG/io.fusionauth.domain.APIKey.json | 7 +++++++ .../io.fusionauth.domain.TenantSSOConfiguration.json | 3 +++ 2 files changed, 10 insertions(+) diff --git a/src/main/domainNG/io.fusionauth.domain.APIKey.json b/src/main/domainNG/io.fusionauth.domain.APIKey.json index e822828..891f895 100644 --- a/src/main/domainNG/io.fusionauth.domain.APIKey.json +++ b/src/main/domainNG/io.fusionauth.domain.APIKey.json @@ -36,10 +36,17 @@ "className" : "io.fusionauth.domain.APIKey$APIKeyMetaData", "type" : "APIKey$APIKeyMetaData" }, + "name" : { + "className" : "java.lang.String", + "type" : "String" + }, "permissions" : { "className" : "io.fusionauth.domain.APIKey$APIKeyPermissions", "type" : "APIKey$APIKeyPermissions" }, + "retrievable" : { + "type" : "boolean" + }, "tenantId" : { "className" : "java.util.UUID", "type" : "UUID" diff --git a/src/main/domainNG/io.fusionauth.domain.TenantSSOConfiguration.json b/src/main/domainNG/io.fusionauth.domain.TenantSSOConfiguration.json index 52e8889..afeaf7c 100644 --- a/src/main/domainNG/io.fusionauth.domain.TenantSSOConfiguration.json +++ b/src/main/domainNG/io.fusionauth.domain.TenantSSOConfiguration.json @@ -2,6 +2,9 @@ "className" : "io.fusionauth.domain.TenantSSOConfiguration", "extends" : { }, "fields" : { + "allowAccessTokenBootstrap" : { + "type" : "boolean" + }, "deviceTrustTimeToLiveInSeconds" : { "type" : "int" } From 508f6dce538628d920f46445eff95b9c58237f32 Mon Sep 17 00:00:00 2001 From: Daniel DeGroff Date: Thu, 10 Jul 2025 15:58:23 -0600 Subject: [PATCH 3/3] add a variable copyright year --- src/main/client/android.client.ftl | 2 +- src/main/client/angular.client.ftl | 2 +- src/main/client/csharp.client.ftl | 2 +- src/main/client/go.client.ftl | 2 +- src/main/client/go.domain.ftl | 2 +- src/main/client/go.domain.test.ftl | 2 +- src/main/client/java.client.ftl | 2 +- src/main/client/java.domain.ftl | 4 ++-- src/main/client/java.domainNG.ftl | 4 ++-- src/main/client/netcore.client.ftl | 2 +- src/main/client/netcore.client.interface.ftl | 2 +- src/main/client/netcore.client.sync.ftl | 2 +- src/main/client/netcore.domain.ftl | 2 +- src/main/client/php.client.ftl | 4 ++-- src/main/client/python.client.ftl | 2 +- src/main/client/ruby.client.ftl | 2 +- src/main/client/typescript.client.ftl | 2 +- 17 files changed, 20 insertions(+), 20 deletions(-) diff --git a/src/main/client/android.client.ftl b/src/main/client/android.client.ftl index 1162276..cead584 100644 --- a/src/main/client/android.client.ftl +++ b/src/main/client/android.client.ftl @@ -1,6 +1,6 @@ [#import "_macros.ftl" as global/] /* - * Copyright (c) 2018-2023, FusionAuth, All Rights Reserved + * Copyright (c) 2018-${.now?string('yyyy')}, FusionAuth, All Rights Reserved * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/main/client/angular.client.ftl b/src/main/client/angular.client.ftl index 433d8e4..d658a3e 100644 --- a/src/main/client/angular.client.ftl +++ b/src/main/client/angular.client.ftl @@ -1,7 +1,7 @@ [#--noinspection ALL--] [#import "_macros.ftl" as global/] /* -* Copyright (c) 2018-2023, FusionAuth, All Rights Reserved +* Copyright (c) 2018-${.now?string('yyyy')}, FusionAuth, All Rights Reserved * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/main/client/csharp.client.ftl b/src/main/client/csharp.client.ftl index 6429255..18f7c9b 100644 --- a/src/main/client/csharp.client.ftl +++ b/src/main/client/csharp.client.ftl @@ -1,6 +1,6 @@ [#import "_macros.ftl" as global/] /* - * Copyright (c) 2018-2023, FusionAuth, All Rights Reserved + * Copyright (c) 2018-${.now?string('yyyy')}, FusionAuth, All Rights Reserved * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/main/client/go.client.ftl b/src/main/client/go.client.ftl index b417bf3..1ce43cd 100644 --- a/src/main/client/go.client.ftl +++ b/src/main/client/go.client.ftl @@ -1,6 +1,6 @@ [#import "_macros.ftl" as global/] /* -* Copyright (c) 2019-2023, FusionAuth, All Rights Reserved +* Copyright (c) 2019-${.now?string('yyyy')}, FusionAuth, All Rights Reserved * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/main/client/go.domain.ftl b/src/main/client/go.domain.ftl index a693a22..a6d03b1 100644 --- a/src/main/client/go.domain.ftl +++ b/src/main/client/go.domain.ftl @@ -1,7 +1,7 @@ [#-- @ftlvariable name="packages" type="String[]" --] [#-- @ftlvariable name="types_in_use" type="String[]" --] /* -* Copyright (c) 2019-2023, FusionAuth, All Rights Reserved +* Copyright (c) 2019-${.now?string('yyyy')}, FusionAuth, All Rights Reserved * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/main/client/go.domain.test.ftl b/src/main/client/go.domain.test.ftl index 81dfb0d..dc9568d 100644 --- a/src/main/client/go.domain.test.ftl +++ b/src/main/client/go.domain.test.ftl @@ -1,5 +1,5 @@ /* -* Copyright (c) 2019-2023, FusionAuth, All Rights Reserved +* Copyright (c) 2019-${.now?string('yyyy')}, FusionAuth, All Rights Reserved * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/main/client/java.client.ftl b/src/main/client/java.client.ftl index d41fb70..da6ca18 100644 --- a/src/main/client/java.client.ftl +++ b/src/main/client/java.client.ftl @@ -1,6 +1,6 @@ [#import "_macros.ftl" as global/] /* - * Copyright (c) 2018-2023, FusionAuth, All Rights Reserved + * Copyright (c) 2018-${.now?string('yyyy')}, FusionAuth, All Rights Reserved * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/main/client/java.domain.ftl b/src/main/client/java.domain.ftl index 1815afe..82451eb 100644 --- a/src/main/client/java.domain.ftl +++ b/src/main/client/java.domain.ftl @@ -2,7 +2,7 @@ [#-- @ftlvariable name="packages" type="String[]" --] [#-- @ftlvariable name="types_in_use" type="String[]" --] /* - * Copyright (c) 2018-2023, FusionAuth, All Rights Reserved + * Copyright (c) 2018-${.now?string('yyyy')}, FusionAuth, All Rights Reserved * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -100,4 +100,4 @@ public enum ${domain_item.type} { [#lt][#sep], [/#sep] [/#list] } -[/#if] \ No newline at end of file +[/#if] diff --git a/src/main/client/java.domainNG.ftl b/src/main/client/java.domainNG.ftl index b69e1e0..f20bad2 100644 --- a/src/main/client/java.domainNG.ftl +++ b/src/main/client/java.domainNG.ftl @@ -2,7 +2,7 @@ [#-- @ftlvariable name="packages" type="String[]" --] [#-- @ftlvariable name="types_in_use" type="String[]" --] /* - * Copyright (c) 2018-2023, FusionAuth, All Rights Reserved + * Copyright (c) 2018-${.now?string('yyyy')}, FusionAuth, All Rights Reserved * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -96,4 +96,4 @@ public enum ${domain_item.type} { [#lt][#sep], [/#sep] [/#list] } -[/#if] \ No newline at end of file +[/#if] diff --git a/src/main/client/netcore.client.ftl b/src/main/client/netcore.client.ftl index a112d05..0f61691 100644 --- a/src/main/client/netcore.client.ftl +++ b/src/main/client/netcore.client.ftl @@ -1,6 +1,6 @@ [#import "_macros.ftl" as global/] /* - * Copyright (c) 2018-2023, FusionAuth, All Rights Reserved + * Copyright (c) 2018-${.now?string('yyyy')}, FusionAuth, All Rights Reserved * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/main/client/netcore.client.interface.ftl b/src/main/client/netcore.client.interface.ftl index 92bc98b..a9493c7 100644 --- a/src/main/client/netcore.client.interface.ftl +++ b/src/main/client/netcore.client.interface.ftl @@ -1,6 +1,6 @@ [#import "_macros.ftl" as global/] /* - * Copyright (c) 2020-2023, FusionAuth, All Rights Reserved + * Copyright (c) 2020-${.now?string('yyyy')}, FusionAuth, All Rights Reserved * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/main/client/netcore.client.sync.ftl b/src/main/client/netcore.client.sync.ftl index 06c95e6..a0b73ed 100644 --- a/src/main/client/netcore.client.sync.ftl +++ b/src/main/client/netcore.client.sync.ftl @@ -16,7 +16,7 @@ [#return result?join(", ")/] [/#function] /* - * Copyright (c) 2020-2023, FusionAuth, All Rights Reserved + * Copyright (c) 2020-${.now?string('yyyy')}, FusionAuth, All Rights Reserved * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/main/client/netcore.domain.ftl b/src/main/client/netcore.domain.ftl index fc5d7f8..60a456a 100644 --- a/src/main/client/netcore.domain.ftl +++ b/src/main/client/netcore.domain.ftl @@ -1,7 +1,7 @@ [#-- @ftlvariable name="packages" type="String[]" --] [#-- @ftlvariable name="types_in_use" type="String[]" --] /* - * Copyright (c) 2018-2023, FusionAuth, All Rights Reserved + * Copyright (c) 2018-${.now?string('yyyy')}, FusionAuth, All Rights Reserved * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/main/client/php.client.ftl b/src/main/client/php.client.ftl index d65f56c..65293e5 100644 --- a/src/main/client/php.client.ftl +++ b/src/main/client/php.client.ftl @@ -14,7 +14,7 @@ namespace FusionAuth; /* - * Copyright (c) 2018-2023, FusionAuth, All Rights Reserved + * Copyright (c) 2018-${.now?string('yyyy')}, FusionAuth, All Rights Reserved * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -151,4 +151,4 @@ class FusionAuthClient ->successResponseHandler(new JSONResponseHandler()) ->errorResponseHandler(new JSONResponseHandler()); } -} \ No newline at end of file +} diff --git a/src/main/client/python.client.ftl b/src/main/client/python.client.ftl index 6b42fb8..82b23c5 100644 --- a/src/main/client/python.client.ftl +++ b/src/main/client/python.client.ftl @@ -1,6 +1,6 @@ [#import "_macros.ftl" as global/] # -# Copyright (c) 2018-2023, FusionAuth, All Rights Reserved +# Copyright (c) 2018-${.now?string('yyyy')}, FusionAuth, All Rights Reserved # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/src/main/client/ruby.client.ftl b/src/main/client/ruby.client.ftl index 375dbd7..626bed3 100644 --- a/src/main/client/ruby.client.ftl +++ b/src/main/client/ruby.client.ftl @@ -3,7 +3,7 @@ require 'ostruct' require 'fusionauth/rest_client' # -# Copyright (c) 2018-2023, FusionAuth, All Rights Reserved +# Copyright (c) 2018-${.now?string('yyyy')}, FusionAuth, All Rights Reserved # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/src/main/client/typescript.client.ftl b/src/main/client/typescript.client.ftl index b76bf82..04896b9 100644 --- a/src/main/client/typescript.client.ftl +++ b/src/main/client/typescript.client.ftl @@ -1,7 +1,7 @@ [#--noinspection ALL--] [#import "_macros.ftl" as global/] /* -* Copyright (c) 2019-2023, FusionAuth, All Rights Reserved +* Copyright (c) 2019-${.now?string('yyyy')}, FusionAuth, All Rights Reserved * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License.